]> git.lyx.org Git - features.git/blob - development/cmake/src/tex2lyx/CMakeLists.txt
Fix tex2lyx compilation.
[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/Color.cpp)
18
19 set(LINKED_headers
20         ${TOP_SRC_DIR}/src/Layout.h
21         ${TOP_SRC_DIR}/src/TextClass.h)
22
23 set(tex2lyx_sources
24         ${TOP_SRC_DIR}/src/tex2lyx/boost.cpp
25         ${TOP_SRC_DIR}/src/tex2lyx/Context.cpp
26         ${TOP_SRC_DIR}/src/tex2lyx/Font.cpp
27         ${TOP_SRC_DIR}/src/tex2lyx/gettext.cpp
28         ${TOP_SRC_DIR}/src/tex2lyx/lengthcommon.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         intl)
63         
64 if(WIN32)
65         target_link_libraries(tex2lyx shlwapi)
66 endif()
67
68 if(APPLE)
69         target_link_libraries(tex2lyx "-framework Carbon")
70 endif()
71
72 project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers)
73