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