]> git.lyx.org Git - features.git/blob - development/cmake/src/tex2lyx/CMakeLists.txt
Cleanup Boost-Libraries use
[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, 2008, 2009 Peter Kümmel, <syntheticpp@gmx.net>
5 # Copyright (c)       2008, 2009 Kornel Benko, <Kornel.Benko@berlin.de>
6 #
7
8 set(_tex2lyx tex2lyx${PROGRAM_SUFFIX})
9 project(${_tex2lyx})
10
11 # There is no header file lengthcommon.h
12 set(LINKED_sources ${TOP_SRC_DIR}/src/lengthcommon.cpp)
13 set(LINKED_headers)
14
15 foreach(_src insets/InsetLayout Color Counters
16     Encoding FloatList Floating
17     Layout LayoutModuleList Lexer ModuleList TextClass)
18   list(APPEND LINKED_sources ${TOP_SRC_DIR}/src/${_src}.cpp)
19   list(APPEND LINKED_headers ${TOP_SRC_DIR}/src/${_src}.h)
20 endforeach(_src)
21
22 file(GLOB tex2lyx_sources ${TOP_SRC_DIR}/src/tex2lyx/${LYX_CPP_FILES})
23
24 file(GLOB tex2lyx_headers ${TOP_SRC_DIR}/src/tex2lyx/${LYX_HPP_FILES})
25
26 include_directories(BEFORE ${TOP_SRC_DIR}/src/tex2lyx
27   ${TOP_SRC_DIR}/src/support/minizip ${ZLIB_INCLUDE_DIR})
28
29 add_definitions(-DTEX2LYX)
30
31 if(NOT MERGE_FILES)
32         add_executable(${_tex2lyx} ${tex2lyx_sources} ${LINKED_sources}
33                 ${tex2lyx_headers} ${LINKED_headers})
34 else()
35         lyx_const_touched_files(_allinone  tex2lyx_sources)
36         lyx_const_touched_files(_allinone_linked  LINKED_sources)
37         add_executable(${_tex2lyx} ${_allinone_files} ${_allinone_linked_files})
38 endif()
39
40 target_link_libraries(${_tex2lyx}
41         support
42         ${Lyx_Boost_Libraries}
43         ${QT_QTCORE_LIBRARY}
44         ${LIBINTL_LIBRARIES}
45         ${ICONV_LIBRARY})
46
47 if(WIN32)
48         target_link_libraries(${_tex2lyx} shlwapi ole32 psapi)
49 endif()
50
51 if(APPLE)
52         target_link_libraries(${_tex2lyx} "-framework Carbon")
53 endif()
54
55 project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers)
56
57 install(TARGETS ${_tex2lyx} DESTINATION bin)
58