mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
afe522b1f6
New files: development/cmake/doc/ReplaceValues.pl perl-script to substitute words (defined in the cmd-line) with their actual values development/cmake/doc/CMakefiles.txt convert and install files .lyx and .txt-files from the lib/doc-directory development/cmake/src/client/CMakeLists.txt create and install lyxclient Changed: development/cmake/Install.cmake include the new doc-directory remove installation of .lyx from the doc-directory. Will be installed in development/cmake/doc/CMakefiles.txt development/cmake/Install.cmake changed macro lyx_install() to not insert '.' into the globbing-expression automatically. We need sometimes also dotless files. development/cmake/src/CMakefiles.txt Added subdirectory client to create and install lyxclient on unix-like systems git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27978 a592a061-630c-0410-9148-cb99ea01b6c8
91 lines
2.0 KiB
CMake
91 lines
2.0 KiB
CMake
# 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>
|
|
#
|
|
|
|
project(lyx)
|
|
|
|
include_directories(${TOP_SRC_DIR}/src)
|
|
|
|
add_subdirectory(frontends)
|
|
add_subdirectory(graphics)
|
|
add_subdirectory(insets)
|
|
add_subdirectory(mathed)
|
|
add_subdirectory(support)
|
|
add_subdirectory(tex2lyx)
|
|
if (UNIX)
|
|
add_subdirectory(client)
|
|
endif()
|
|
|
|
file(GLOB lyx_sources ${TOP_SRC_DIR}/src/${LYX_CPP_FILES})
|
|
file(GLOB lyx_headers ${TOP_SRC_DIR}/src/${LYX_HPP_FILES})
|
|
|
|
list(REMOVE_ITEM lyx_sources
|
|
${TOP_SRC_DIR}/src/ASpell.cpp
|
|
${TOP_SRC_DIR}/src/PSpell.cpp
|
|
${TOP_SRC_DIR}/src/ISpell.cpp
|
|
${TOP_SRC_DIR}/src/Variables.cpp
|
|
${TOP_SRC_DIR}/src/Section.cpp)
|
|
|
|
if (ASPELL_FOUND)
|
|
include_directories(${ASPELL_INCLUDE_DIR})
|
|
set(lyx_sources ${lyx_sources} ${TOP_SRC_DIR}/src/ASpell.cpp)
|
|
endif()
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}
|
|
${ZLIB_INCLUDE_DIR})
|
|
|
|
lyx_add_msvc_pch(lyx)
|
|
|
|
|
|
if (NOT MERGE_FILES)
|
|
set(lyx_sources ${lyx_sources})
|
|
else()
|
|
lyx_const_touched_files(_allinone lyx_sources)
|
|
set(lyx_sources ${_allinone_files})
|
|
endif()
|
|
|
|
if (LYX_LEAK_DETECTION)
|
|
configure_file(${vld_path}/vld.ini ${CMAKE_CURRENT_BINARY_DIR}/vld.ini COPYONLY)
|
|
configure_file(${vld_path}/vld.ini ${CMAKE_CURRENT_BINARY_DIR}/memory_leak_report.txt COPYONLY)
|
|
set(vld_files ${CMAKE_CURRENT_BINARY_DIR}/vld.ini ${CMAKE_CURRENT_BINARY_DIR}/memory_leak_report.txt)
|
|
endif()
|
|
|
|
add_executable(lyx
|
|
${WIN32_CONSOLE}
|
|
${lyx_sources}
|
|
${lyx_headers}
|
|
${vld_files}
|
|
)
|
|
|
|
target_link_libraries(lyx
|
|
mathed
|
|
insets
|
|
frontends
|
|
frontend_qt4
|
|
graphics
|
|
support
|
|
${LIBINTL_LIBRARIES}
|
|
${ICONV_LIBRARY}
|
|
${QT_QTMAIN_LIBRARY}
|
|
${vld_dll})
|
|
|
|
if (ASPELL_FOUND)
|
|
target_link_libraries(lyx ${ASPELL_LIBRARY})
|
|
endif()
|
|
|
|
if (APPLE)
|
|
target_link_libraries(lyx "-bind_at_load")
|
|
target_link_libraries(lyx "-framework Carbon")
|
|
endif()
|
|
|
|
if (MINGW)
|
|
target_link_libraries(lyx ole32)
|
|
endif()
|
|
|
|
project_source_group("${GROUP_CODE}" lyx_sources lyx_headers)
|
|
|
|
install(TARGETS lyx DESTINATION bin)
|
|
|