]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/CMakeLists.txt
49d39c4bd44c3ab8cf1f633c7bb8c68040768791
[lyx.git] / 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-2011 Peter Kümmel, <syntheticpp@gmx.net>
5 # Copyright (c) 2008-2011 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 LayoutFile LayoutModuleList Lexer ModuleList TextClass
18         FontInfo Spacing)
19         list(APPEND LINKED_sources ${TOP_SRC_DIR}/src/${_src}.cpp)
20         list(APPEND LINKED_headers ${TOP_SRC_DIR}/src/${_src}.h)
21 endforeach(_src)
22
23 file(GLOB tex2lyx_sources ${TOP_SRC_DIR}/src/tex2lyx/${LYX_CPP_FILES})
24
25 file(GLOB tex2lyx_headers ${TOP_SRC_DIR}/src/tex2lyx/${LYX_HPP_FILES})
26
27 include_directories(BEFORE
28         ${TOP_SRC_DIR}/src/tex2lyx
29         ${TOP_SRC_DIR}/src/support/minizip
30         ${ZLIB_INCLUDE_DIR})
31
32 add_definitions(-DTEX2LYX)
33
34 if(NOT LYX_MERGE_FILES)
35         add_executable(${_tex2lyx} ${tex2lyx_sources} ${LINKED_sources} ${tex2lyx_headers} ${LINKED_headers})
36 else()
37         lyx_const_touched_files(_allinone  tex2lyx_sources)
38         lyx_const_touched_files(_allinone_linked  LINKED_sources)
39         add_executable(${_tex2lyx} ${_allinone_files} ${_allinone_linked_files})
40 endif()
41
42 target_link_libraries(${_tex2lyx}
43         support
44         ${Lyx_Boost_Libraries}
45         ${QT_QTCORE_LIBRARY}
46         ${LIBINTL_LIBRARIES}
47         ${ICONV_LIBRARY})
48
49 if(WIN32)
50         target_link_libraries(${_tex2lyx} shlwapi ole32 psapi)
51 endif()
52
53 if(APPLE)
54         target_link_libraries(${_tex2lyx} "-framework AppKit")
55 endif()
56
57
58 project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers)
59
60 if(LYX_BUNDLE)
61         install(TARGETS ${_tex2lyx}
62                 RUNTIME DESTINATION bin
63                 BUNDLE DESTINATION .)
64 else()
65         install(TARGETS ${_tex2lyx} DESTINATION bin)
66 endif()
67