X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2FCMakeLists.txt;h=09bcc2bf3625dc2d6ede7c32b6a34b80598b6410;hb=b6b263b9fc4cd70849c60de9f8849c346b3c12ab;hp=08ce121c0004fb8966c623714156093a98104972;hpb=0b790c05b8e781d79dab369c266075b481dbe422;p=lyx.git diff --git a/src/tex2lyx/CMakeLists.txt b/src/tex2lyx/CMakeLists.txt index 08ce121c00..09bcc2bf36 100644 --- a/src/tex2lyx/CMakeLists.txt +++ b/src/tex2lyx/CMakeLists.txt @@ -5,16 +5,16 @@ # Copyright (c) 2008-2011 Kornel Benko, # -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 Author Color Counters - Encoding FloatList Floating FontInfo LaTeXPackages - Layout LayoutFile LayoutModuleList Lexer ModuleList TextClass +foreach(_src graphics/GraphicsParams insets/ExternalTemplate + insets/ExternalTransforms insets/InsetLayout Author Color Counters + Encoding FloatList Floating FontInfo LaTeXPackages Layout + LayoutFile LayoutModuleList Length Lexer ModuleList TextClass Spacing version) list(APPEND LINKED_sources ${TOP_SRC_DIR}/src/${_src}.cpp) list(APPEND LINKED_headers ${TOP_SRC_DIR}/src/${_src}.h) @@ -29,10 +29,8 @@ include_directories(BEFORE ${TOP_SRC_DIR}/src/support/minizip ${ZLIB_INCLUDE_DIR}) -add_definitions(-DTEX2LYX) - -if(WIN32) - set(FILE_RC ${TOP_SRC_DIR}/development/cmake/lyx.rc) +if(WIN32 AND NOT MINGW) + set(FILE_RC ${TOP_CMAKE_PATH}/lyx.rc) message(STATUS "Using icon defined in resource file: ${FILE_RC}") endif() @@ -43,18 +41,27 @@ else() lyx_const_touched_files(_allinone_linked LINKED_sources) add_executable(${_tex2lyx} ${_allinone_files} ${_allinone_linked_files} ${FILE_RC}) endif() +set_target_properties(${_tex2lyx} PROPERTIES FOLDER "applications/TeX2LyX") target_link_libraries(${_tex2lyx} support ${Lyx_Boost_Libraries} ${QT_QTCORE_LIBRARY} - ${LIBINTL_LIBRARIES} + ${QT_QTGUI_LIBRARY} ${ICONV_LIBRARY}) +lyx_target_link_libraries(${_tex2lyx} Magic) + +add_dependencies(${_tex2lyx} lyx_version) + if(WIN32) target_link_libraries(${_tex2lyx} shlwapi ole32 psapi) endif() +if(CYGWIN) + target_link_libraries(${_tex2lyx} shlwapi ole32) +endif() + if(APPLE) target_link_libraries(${_tex2lyx} "-framework AppKit") endif() @@ -62,11 +69,7 @@ endif() project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers) -if(LYX_BUNDLE) - install(TARGETS ${_tex2lyx} - RUNTIME DESTINATION bin - BUNDLE DESTINATION .) -else() - install(TARGETS ${_tex2lyx} DESTINATION bin) -endif() +add_subdirectory(test) + +install(TARGETS ${_tex2lyx} DESTINATION ${LYX_UTILITIES_INSTALL_PATH})