]> git.lyx.org Git - features.git/blob - development/cmake/src/tex2lyx/CMakeLists.txt
cmake: fix install rules
[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/Encoding.cpp
12         ${TOP_SRC_DIR}/src/FloatList.cpp
13         ${TOP_SRC_DIR}/src/Floating.cpp
14         ${TOP_SRC_DIR}/src/Counters.cpp
15         ${TOP_SRC_DIR}/src/Layout.cpp
16         ${TOP_SRC_DIR}/src/TextClass.cpp
17         ${TOP_SRC_DIR}/src/Lexer.cpp
18         ${TOP_SRC_DIR}/src/lengthcommon.cpp
19         ${TOP_SRC_DIR}/src/Color.cpp)
20
21 set(LINKED_headers
22         ${TOP_SRC_DIR}/src/Layout.h
23         ${TOP_SRC_DIR}/src/TextClass.h)
24
25 set(tex2lyx_sources
26         ${TOP_SRC_DIR}/src/tex2lyx/boost.cpp
27         ${TOP_SRC_DIR}/src/tex2lyx/Context.cpp
28         ${TOP_SRC_DIR}/src/tex2lyx/Font.cpp
29         ${TOP_SRC_DIR}/src/tex2lyx/gettext.cpp
30         ${TOP_SRC_DIR}/src/tex2lyx/Parser.cpp
31         ${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.cpp
32         ${TOP_SRC_DIR}/src/tex2lyx/preamble.cpp
33         ${TOP_SRC_DIR}/src/tex2lyx/math.cpp
34         ${TOP_SRC_DIR}/src/tex2lyx/table.cpp
35         ${TOP_SRC_DIR}/src/tex2lyx/text.cpp)
36
37 set(tex2lyx_headers
38         ${TOP_SRC_DIR}/src/tex2lyx/Spacing.h
39         ${TOP_SRC_DIR}/src/tex2lyx/Context.h
40         ${TOP_SRC_DIR}/src/tex2lyx/Font.h
41         ${TOP_SRC_DIR}/src/tex2lyx/Parser.h
42         ${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.h)
43
44 include_directories(BEFORE ${TOP_SRC_DIR}/src/tex2lyx
45         ${TOP_SRC_DIR}/src/support/minizip ${ZLIB_INCLUDE_DIR})
46
47 add_definitions(-DTEX2LYX)
48
49 if(NOT MERGE_FILES)
50         add_executable(tex2lyx ${tex2lyx_sources} ${LINKED_sources}
51                 ${tex2lyx_headers} ${LINKED_headers})
52 else()
53         lyx_const_touched_files(_allinone  tex2lyx_sources)
54         lyx_const_touched_files(_allinone_linked  LINKED_sources)
55         add_executable(tex2lyx  ${_allinone_files} ${_allinone_linked_files})
56 endif()
57
58
59 target_link_libraries(tex2lyx  
60         support
61         boost_regex
62         ${QT_QTCORE_LIBRARY} 
63         ${LIBINTL_LIBRARIES}
64         ${ICONV_LIBRARY})
65         
66 if(WIN32)
67         target_link_libraries(tex2lyx shlwapi ole32)
68 endif()
69
70 if(APPLE)
71         target_link_libraries(tex2lyx "-framework Carbon")
72 endif()
73
74 project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers)
75
76 install(TARGETS tex2lyx DESTINATION bin PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
77