X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=development%2Fcmake%2Fsrc%2Ftex2lyx%2FCMakeLists.txt;h=56be3be82ccead6299d8093439908df6c04f0119;hb=56a7a6778356ad1b70eff4ae6a960f2cad414ea1;hp=103a286f2ece6985d33616f014eef59b2e55b6cc;hpb=a833b6f097bb581a58f894aa8d14bc64962a269d;p=features.git diff --git a/development/cmake/src/tex2lyx/CMakeLists.txt b/development/cmake/src/tex2lyx/CMakeLists.txt index 103a286f2e..56be3be82c 100644 --- a/development/cmake/src/tex2lyx/CMakeLists.txt +++ b/development/cmake/src/tex2lyx/CMakeLists.txt @@ -1,74 +1,53 @@ # This file is part of LyX, the document processor. # Licence details can be found in the file COPYING. # -# Copyright (c) 2006, Peter Kümmel, +# Copyright (c) 2006, 2008, 2009 Peter Kümmel, +# Copyright (c) 2008, 2009 Kornel Benko, # set(_tex2lyx tex2lyx${PROGRAM_SUFFIX}) project(${_tex2lyx}) -set(LINKED_sources - ${TOP_SRC_DIR}/src/insets/InsetLayout.cpp - ${TOP_SRC_DIR}/src/Encoding.cpp - ${TOP_SRC_DIR}/src/FloatList.cpp - ${TOP_SRC_DIR}/src/Floating.cpp - ${TOP_SRC_DIR}/src/Counters.cpp - ${TOP_SRC_DIR}/src/Layout.cpp - ${TOP_SRC_DIR}/src/LayoutModuleList.cpp - ${TOP_SRC_DIR}/src/TextClass.cpp - ${TOP_SRC_DIR}/src/Lexer.cpp - ${TOP_SRC_DIR}/src/lengthcommon.cpp - ${TOP_SRC_DIR}/src/Color.cpp - ${TOP_SRC_DIR}/src/ModuleList.cpp) +# There is no header file lengthcommon.h +set(LINKED_sources ${TOP_SRC_DIR}/src/lengthcommon.cpp) +set(LINKED_headers) -set(LINKED_headers - ${TOP_SRC_DIR}/src/Layout.h - ${TOP_SRC_DIR}/src/LayoutModuleList.h - ${TOP_SRC_DIR}/src/TextClass.h) +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(tex2lyx_sources - ${TOP_SRC_DIR}/src/tex2lyx/boost.cpp - ${TOP_SRC_DIR}/src/tex2lyx/Context.cpp - ${TOP_SRC_DIR}/src/tex2lyx/Font.cpp - ${TOP_SRC_DIR}/src/tex2lyx/gettext.cpp - ${TOP_SRC_DIR}/src/tex2lyx/Parser.cpp - ${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.cpp - ${TOP_SRC_DIR}/src/tex2lyx/preamble.cpp - ${TOP_SRC_DIR}/src/tex2lyx/math.cpp - ${TOP_SRC_DIR}/src/tex2lyx/table.cpp - ${TOP_SRC_DIR}/src/tex2lyx/text.cpp) +file(GLOB tex2lyx_sources ${TOP_SRC_DIR}/src/tex2lyx/${LYX_CPP_FILES}) -set(tex2lyx_headers - ${TOP_SRC_DIR}/src/tex2lyx/Spacing.h - ${TOP_SRC_DIR}/src/tex2lyx/Context.h - ${TOP_SRC_DIR}/src/tex2lyx/Font.h - ${TOP_SRC_DIR}/src/tex2lyx/Parser.h - ${TOP_SRC_DIR}/src/tex2lyx/tex2lyx.h) +file(GLOB tex2lyx_headers ${TOP_SRC_DIR}/src/tex2lyx/${LYX_HPP_FILES}) include_directories(BEFORE ${TOP_SRC_DIR}/src/tex2lyx - ${TOP_SRC_DIR}/src/support/minizip ${ZLIB_INCLUDE_DIR}) + ${TOP_SRC_DIR}/src/support/minizip ${ZLIB_INCLUDE_DIR}) add_definitions(-DTEX2LYX) -if(NOT MERGE_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}) + add_executable(${_tex2lyx} ${_allinone_files} ${_allinone_linked_files}) endif() - -target_link_libraries(${_tex2lyx} +target_link_libraries(${_tex2lyx} support - boost_regex - ${QT_QTCORE_LIBRARY} + ${Lyx_Boost_Libraries} + ${QT_QTCORE_LIBRARY} ${LIBINTL_LIBRARIES} - ${ICONV_LIBRARY}) - + ${ICONV_LIBRARY} + ${OPENSSL_LIBRARIES}) + if(WIN32) - target_link_libraries(${_tex2lyx} shlwapi ole32) + target_link_libraries(${_tex2lyx} shlwapi ole32 psapi) endif() if(APPLE) @@ -77,5 +56,5 @@ endif() project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers) -install(TARGETS ${_tex2lyx} DESTINATION bin PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) +install(TARGETS ${_tex2lyx} DESTINATION bin)