]> git.lyx.org Git - features.git/blob - development/cmake/src/tex2lyx/CMakeLists.txt
cmake: use external libintl on windows
[features.git] / development / cmake / src / tex2lyx / CMakeLists.txt
1 # This file is part of LyX, the document processor.
2 # Licence details can be found in the file COPYING.
3 #
4 # Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
5 #
6
7 project(tex2lyx)
8
9 set(LINKED_sources
10         ${TOP_SRC_DIR}/src/insets/InsetLayout.cpp
11         ${TOP_SRC_DIR}/src/FloatList.cpp
12         ${TOP_SRC_DIR}/src/Floating.cpp
13         ${TOP_SRC_DIR}/src/Counters.cpp
14         ${TOP_SRC_DIR}/src/Layout.cpp
15         ${TOP_SRC_DIR}/src/TextClass.cpp
16         ${TOP_SRC_DIR}/src/Lexer.cpp
17         ${TOP_SRC_DIR}/src/lengthcommon.cpp
18         ${TOP_SRC_DIR}/src/Color.cpp)
19
20 set(LINKED_headers
21         ${TOP_SRC_DIR}/src/Layout.h
22         ${TOP_SRC_DIR}/src/TextClass.h)
23
24 set(tex2lyx_sources
25         ${TOP_SRC_DIR}/src/tex2lyx/boost.cpp
26         ${TOP_SRC_DIR}/src/tex2lyx/Context.cpp
27         ${TOP_SRC_DIR}/src/tex2lyx/Font.cpp
28         ${TOP_SRC_DIR}/src/tex2lyx/gettext.cpp
29         ${TOP_SRC_DIR}/src/tex2lyx/Parser.cpp
30         ${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.cpp
31         ${TOP_SRC_DIR}/src/tex2lyx/preamble.cpp
32         ${TOP_SRC_DIR}/src/tex2lyx/math.cpp
33         ${TOP_SRC_DIR}/src/tex2lyx/table.cpp
34         ${TOP_SRC_DIR}/src/tex2lyx/text.cpp)
35
36 set(tex2lyx_headers
37         ${TOP_SRC_DIR}/src/tex2lyx/Spacing.h
38         ${TOP_SRC_DIR}/src/tex2lyx/Context.h
39         ${TOP_SRC_DIR}/src/tex2lyx/Font.h
40         ${TOP_SRC_DIR}/src/tex2lyx/Parser.h
41         ${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.h)
42
43 include_directories(BEFORE ${TOP_SRC_DIR}/src/tex2lyx
44         ${TOP_SRC_DIR}/src/support/minizip ${ZLIB_INCLUDE_DIR})
45
46 add_definitions(-DTEX2LYX)
47
48 if(NOT MERGE_FILES)
49         add_executable(tex2lyx ${tex2lyx_sources} ${LINKED_sources}
50                 ${tex2lyx_headers} ${LINKED_headers})
51 else()
52         lyx_const_touched_files(_allinone  tex2lyx_sources)
53         lyx_const_touched_files(_allinone_linked  LINKED_sources)
54         add_executable(tex2lyx  ${_allinone_files} ${_allinone_linked_files})
55 endif()
56
57
58 target_link_libraries(tex2lyx  
59         support
60         boost_regex
61         ${QT_QTCORE_LIBRARY} 
62         ${LIBINTL_LIBRARIES}
63         ${ICONV_LIBRARY})
64         
65 if(WIN32)
66         target_link_libraries(tex2lyx shlwapi)
67 endif()
68
69 if(APPLE)
70         target_link_libraries(tex2lyx "-framework Carbon")
71 endif()
72
73 project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers)
74