]> git.lyx.org Git - features.git/blobdiff - development/cmake/src/tex2lyx/CMakeLists.txt
add first version of .lyx file encryption. It's disabled by default and could out...
[features.git] / development / cmake / src / tex2lyx / CMakeLists.txt
index d7c5de6d42fabec6e024663bedb6b9f24939b99f..56be3be82ccead6299d8093439908df6c04f0119 100644 (file)
@@ -1,71 +1,60 @@
 # This file is part of LyX, the document processor.
 # Licence details can be found in the file COPYING.
 #
-# Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
+# Copyright (c) 2006, 2008, 2009 Peter Kümmel, <syntheticpp@gmx.net>
+# Copyright (c)       2008, 2009 Kornel Benko, <Kornel.Benko@berlin.de>
 #
 
-project(tex2lyx)
+set(_tex2lyx tex2lyx${PROGRAM_SUFFIX})
+project(${_tex2lyx})
 
+# There is no header file lengthcommon.h
+set(LINKED_sources ${TOP_SRC_DIR}/src/lengthcommon.cpp)
+set(LINKED_headers)
 
+foreach(_src insets/InsetLayout Color Counters
+    Encoding FloatList Floating
+    Layout LayoutModuleList Lexer ModuleList TextClass
+    FontInfo Spacing)
+  list(APPEND LINKED_sources ${TOP_SRC_DIR}/src/${_src}.cpp)
+  list(APPEND LINKED_headers ${TOP_SRC_DIR}/src/${_src}.h)
+endforeach(_src)
 
-set(LINKED_FILES
-       ${TOP_SRC_DIR}/src/FloatList.C
-       ${TOP_SRC_DIR}/src/Floating.C
-       ${TOP_SRC_DIR}/src/counters.C
-       ${TOP_SRC_DIR}/src/lyxlayout.h
-       ${TOP_SRC_DIR}/src/lyxlayout.C
-       ${TOP_SRC_DIR}/src/lyxtextclass.C
-       ${TOP_SRC_DIR}/src/lyxtextclass.h
-       ${TOP_SRC_DIR}/src/lyxlex.C
-       ${TOP_SRC_DIR}/src/lyxlex_pimpl.C
-)
+file(GLOB tex2lyx_sources ${TOP_SRC_DIR}/src/tex2lyx/${LYX_CPP_FILES})
 
-set(tex2lyx_sources
-       ${TOP_SRC_DIR}/src/tex2lyx/Spacing.h
-       ${TOP_SRC_DIR}/src/tex2lyx/boost.C
-       ${TOP_SRC_DIR}/src/tex2lyx/context.C
-       ${TOP_SRC_DIR}/src/tex2lyx/
-       ${TOP_SRC_DIR}/src/tex2lyx/context.h
-       ${TOP_SRC_DIR}/src/tex2lyx/gettext.C
-       ${TOP_SRC_DIR}/src/tex2lyx/lengthcommon.C
-       ${TOP_SRC_DIR}/src/tex2lyx/lyxfont.C
-       ${TOP_SRC_DIR}/src/tex2lyx/lyxfont.h
-       ${TOP_SRC_DIR}/src/tex2lyx/texparser.C
-       ${TOP_SRC_DIR}/src/tex2lyx/texparser.h
-       ${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.C
-       ${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.h
-       ${TOP_SRC_DIR}/src/tex2lyx/preamble.C
-       ${TOP_SRC_DIR}/src/tex2lyx/math.C
-       ${TOP_SRC_DIR}/src/tex2lyx/table.C
-       ${TOP_SRC_DIR}/src/tex2lyx/text.C
-)
+file(GLOB tex2lyx_headers ${TOP_SRC_DIR}/src/tex2lyx/${LYX_HPP_FILES})
 
-include_directories(BEFORE ${TOP_SRC_DIR}/src/tex2lyx)
+include_directories(BEFORE ${TOP_SRC_DIR}/src/tex2lyx
+  ${TOP_SRC_DIR}/src/support/minizip ${ZLIB_INCLUDE_DIR})
 
-if(MSVC)
-       SET_SOURCE_FILES_PROPERTIES(${TOP_SRC_DIR}/src/lyxlayout.C ${TOP_SRC_DIR}/src/lyxtextclass.C
-               PROPERTIES COMPILE_FLAGS 
-               "/FI${TOP_SRC_DIR}/src/tex2lyx/lyxfont.h /FI${TOP_SRC_DIR}/src/tex2lyx/Spacing.h")
-else(MSVC)
-       SET_SOURCE_FILES_PROPERTIES(${TOP_SRC_DIR}/src/lyxlayout.C ${TOP_SRC_DIR}/src/lyxtextclass.C
-               PROPERTIES COMPILE_FLAGS 
-               "-include ${TOP_SRC_DIR}/src/tex2lyx/lyxfont.h -include ${TOP_SRC_DIR}/src/tex2lyx/Spacing.h")
-endif(MSVC)
+add_definitions(-DTEX2LYX)
 
-add_executable(tex2lyx ${tex2lyx_sources} ${LINKED_FILES})
+if(NOT LYX_MERGE_FILES)
+       add_executable(${_tex2lyx} ${tex2lyx_sources} ${LINKED_sources}
+               ${tex2lyx_headers} ${LINKED_headers})
+else()
+       lyx_const_touched_files(_allinone  tex2lyx_sources)
+       lyx_const_touched_files(_allinone_linked  LINKED_sources)
+       add_executable(${_tex2lyx} ${_allinone_files} ${_allinone_linked_files})
+endif()
 
-target_link_libraries(tex2lyx  
+target_link_libraries(${_tex2lyx}
        support
-       boost_iostreams
-       boost_filesystem
-       boost_regex
-       ${QT_QTCORE_LIBRARY} 
-       intl
-       )
-       
+       ${Lyx_Boost_Libraries}
+       ${QT_QTCORE_LIBRARY}
+       ${LIBINTL_LIBRARIES}
+       ${ICONV_LIBRARY}
+       ${OPENSSL_LIBRARIES})
+
 if(WIN32)
-       target_link_libraries(tex2lyx shlwapi)
-endif(WIN32)
+       target_link_libraries(${_tex2lyx} shlwapi ole32 psapi)
+endif()
+
+if(APPLE)
+       target_link_libraries(${_tex2lyx} "-framework Carbon")
+endif()
 
 project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers)
 
+install(TARGETS ${_tex2lyx} DESTINATION bin)
+