X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2FCMakeLists.txt;h=04cbdfe8e970d83c4b2bb1bb53dd8519115c2d4d;hb=237193f8a888777192981136469a5d4febb8e9d8;hp=8da2bba15d25bf0dbd71ecbb949ee7225dd357da;hpb=d91d6e3343a534d24fbc078c395b1f675d731d42;p=lyx.git diff --git a/src/tex2lyx/CMakeLists.txt b/src/tex2lyx/CMakeLists.txt index 8da2bba15d..04cbdfe8e9 100644 --- a/src/tex2lyx/CMakeLists.txt +++ b/src/tex2lyx/CMakeLists.txt @@ -5,7 +5,6 @@ # Copyright (c) 2008-2011 Kornel Benko, # -set(_tex2lyx tex2lyx${PROGRAM_SUFFIX}) project(${_tex2lyx}) # There is no header file lengthcommon.h @@ -25,14 +24,11 @@ file(GLOB tex2lyx_sources ${TOP_SRC_DIR}/src/tex2lyx/${LYX_CPP_FILES}) 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 +include_directories((BEFORE + ${TOP_SRC_DIR}/src/tex2lyx) ${ZLIB_INCLUDE_DIR}) -add_definitions(-DTEX2LYX) - -if(WIN32) +if(WIN32 AND NOT MINGW) set(FILE_RC ${TOP_CMAKE_PATH}/lyx.rc) message(STATUS "Using icon defined in resource file: ${FILE_RC}") endif() @@ -44,21 +40,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} ${QT_QTGUI_LIBRARY} - ${intl_link} ${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() @@ -68,11 +70,5 @@ project_source_group("${GROUP_CODE}" tex2lyx_sources tex2lyx_headers) add_subdirectory(test) -if(LYX_BUNDLE) - install(TARGETS ${_tex2lyx} - RUNTIME DESTINATION bin - BUNDLE DESTINATION .) -else() - install(TARGETS ${_tex2lyx} DESTINATION bin) -endif() +install(TARGETS ${_tex2lyx} DESTINATION ${LYX_UTILITIES_INSTALL_PATH})