mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 22:14:35 +00:00
some attempt at cmake beautification
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19862 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4da4883e0d
commit
b839dd33ae
@ -7,11 +7,12 @@
|
|||||||
#not really needed
|
#not really needed
|
||||||
#CMAKE_MINIMUM_REQUIRED(VERSION 2.4.4 FATAL_ERROR)
|
#CMAKE_MINIMUM_REQUIRED(VERSION 2.4.4 FATAL_ERROR)
|
||||||
|
|
||||||
|
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
||||||
|
|
||||||
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
|
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/
|
||||||
|
# is checked
|
||||||
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules")
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules")
|
||||||
|
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
|
||||||
set (EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
|
|
||||||
|
|
||||||
set(PACKAGE lyx)
|
set(PACKAGE lyx)
|
||||||
set(PACKAGE_VERSION 1.5.1)
|
set(PACKAGE_VERSION 1.5.1)
|
||||||
@ -19,18 +20,24 @@ set(LYX_DATE "August, 2007")
|
|||||||
#TODO
|
#TODO
|
||||||
set(VERSION_INFO "CMake Build")
|
set(VERSION_INFO "CMake Build")
|
||||||
|
|
||||||
|
set(PROGRAM_SUFFIX "")
|
||||||
|
set(LYX_ABS_INSTALLED_DATADIR "/usr/local/share/lyx")
|
||||||
|
set(LYX_ABS_INSTALLED_LOCALEDIR "/usr/local/share/locale")
|
||||||
|
set(LYX_ABS_TOP_SRCDIR "${CMAKE_SOURCE_DIR}")
|
||||||
|
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
set(USE_WINDOWS_PACKAGING 1)
|
set(USE_WINDOWS_PACKAGING 1)
|
||||||
elseif(APPLE)
|
elseif(APPLE)
|
||||||
set(USE_MACOSX_PACKAGING 1)
|
set(USE_MACOSX_PACKAGING 1)
|
||||||
else(WIN32)
|
else()
|
||||||
set(USE_POSIX_PACKAGING 1)
|
set(USE_POSIX_PACKAGING 1)
|
||||||
endif(WIN32)
|
endif()
|
||||||
|
|
||||||
if(NOT GROUP_CODE)
|
if(NOT GROUP_CODE)
|
||||||
#set(GROUP_CODE "The Golden Code")
|
#set(GROUP_CODE "The Golden Code")
|
||||||
set(GROUP_CODE flat)
|
set(GROUP_CODE flat)
|
||||||
endif(NOT GROUP_CODE)
|
endif()
|
||||||
|
|
||||||
# lyx's source files
|
# lyx's source files
|
||||||
set(LYX_CPP_FILES *.cpp)
|
set(LYX_CPP_FILES *.cpp)
|
||||||
@ -47,56 +54,59 @@ if(merge OR merge_rebuild)
|
|||||||
message(STATUS "All *.cpp files of a project are merged into two files, disable with -Dmerge=0")
|
message(STATUS "All *.cpp files of a project are merged into two files, disable with -Dmerge=0")
|
||||||
message(STATUS "")
|
message(STATUS "")
|
||||||
set(disable-pch 1)
|
set(disable-pch 1)
|
||||||
else(merge OR merge_rebuild)
|
else()
|
||||||
set(merge 0 CACHE TYPE STRING FORCE)
|
set(merge 0 CACHE TYPE STRING FORCE)
|
||||||
set(MERGE_FILES 0 CACHE TYPE STRING FORCE)
|
set(MERGE_FILES 0 CACHE TYPE STRING FORCE)
|
||||||
message(STATUS "Enable merging files with -Dmerge=1")
|
message(STATUS "Enable merging files with -Dmerge=1")
|
||||||
endif(merge OR merge_rebuild)
|
endif()
|
||||||
|
|
||||||
|
|
||||||
set(CMAKE_BUILD_TYPE)
|
set(CMAKE_BUILD_TYPE Release)
|
||||||
|
|
||||||
if(profile)
|
if(profile)
|
||||||
set(CMAKE_BUILD_TYPE Profile CACHE TYPE STRING FORCE)
|
set(CMAKE_BUILD_TYPE Profile CACHE TYPE STRING FORCE)
|
||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pg" CACHE TYPE STRING FORCE)
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pg"
|
||||||
|
CACHE TYPE STRING FORCE)
|
||||||
set(profile)
|
set(profile)
|
||||||
endif(profile)
|
endif()
|
||||||
|
|
||||||
if(release)
|
if(release)
|
||||||
set(CMAKE_BUILD_TYPE Release CACHE TYPE STRING FORCE)
|
set(CMAKE_BUILD_TYPE Release CACHE TYPE STRING FORCE)
|
||||||
set(release)
|
set(release)
|
||||||
endif(release)
|
endif()
|
||||||
|
|
||||||
if(debug)
|
if(debug)
|
||||||
set(CMAKE_BUILD_TYPE Debug CACHE TYPE STRING FORCE)
|
set(CMAKE_BUILD_TYPE Debug CACHE TYPE STRING FORCE)
|
||||||
endif(debug)
|
endif()
|
||||||
|
|
||||||
if(shared)
|
if(shared)
|
||||||
set(library_type SHARED)
|
set(library_type SHARED)
|
||||||
message(STATUS "building shared libraries")
|
message(STATUS "building shared libraries")
|
||||||
else(shared)
|
else()
|
||||||
set(library_type STATIC)
|
set(library_type STATIC)
|
||||||
endif(shared)
|
endif()
|
||||||
|
|
||||||
if(UNIX)
|
if(UNIX)
|
||||||
if(NOT quiet)
|
if(NOT quiet)
|
||||||
set(CMAKE_VERBOSE_MAKEFILE ON CACHE TYPE STRING FORCE)
|
set(CMAKE_VERBOSE_MAKEFILE ON CACHE TYPE STRING FORCE)
|
||||||
message(STATUS "verbose Makefile, disable with -Dquiet=1")
|
message(STATUS "verbose Makefile, disable with -Dquiet=1")
|
||||||
message(STATUS "")
|
message(STATUS "")
|
||||||
endif(NOT quiet)
|
endif()
|
||||||
set(LYX_CXX_FLAGS -Wall)
|
set(LYX_CXX_FLAGS -Wall)
|
||||||
if(stdlib-debug)
|
if(stdlib-debug)
|
||||||
set(LYX_CXX_FLAGS "${LYX_CXX_FLAGS} -D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC")
|
set(LYX_CXX_FLAGS "${LYX_CXX_FLAGS} -D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC")
|
||||||
endif(stdlib-debug)
|
endif()
|
||||||
if(concept-checks)
|
if(concept-checks)
|
||||||
set(LYX_CXX_FLAGS "${LYX_CXX_FLAGS} -D_GLIBCPP_CONCEPT_CHECKS")
|
set(LYX_CXX_FLAGS "${LYX_CXX_FLAGS} -D_GLIBCPP_CONCEPT_CHECKS")
|
||||||
endif(concept-checks)
|
endif()
|
||||||
set(CMAKE_CXX_FLAGS "${LYX_CXX_FLAGS}" CACHE TYPE STRING FORCE)
|
set(CMAKE_CXX_FLAGS "${LYX_CXX_FLAGS}" CACHE TYPE STRING FORCE)
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "${LYX_CXX_FLAGS} -O -g -D_DEBUG" CACHE TYPE STRING FORCE)
|
set(CMAKE_CXX_FLAGS_DEBUG "${LYX_CXX_FLAGS} -O -g -D_DEBUG" CACHE TYPE STRING FORCE)
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "${LYX_CXX_FLAGS} -O3 -DNDEBUG" CACHE TYPE STRING FORCE)
|
set(CMAKE_CXX_FLAGS_RELEASE "${LYX_CXX_FLAGS} -O3 -DNDEBUG" CACHE TYPE STRING FORCE)
|
||||||
set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE} -pg" CACHE TYPE STRING FORCE)
|
set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE} -pg" CACHE TYPE STRING FORCE)
|
||||||
endif(UNIX)
|
endif()
|
||||||
|
|
||||||
|
|
||||||
set(qt_postfix qt4)
|
project(lyx)
|
||||||
project(lyx-${qt_postfix})
|
|
||||||
find_package(Qt4 REQUIRED)
|
find_package(Qt4 REQUIRED)
|
||||||
add_definitions(-DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_KEYWORDS)
|
add_definitions(-DQT_CLEAN_NAMESPACE -DQT_NO_STL -DQT_NO_KEYWORDS)
|
||||||
|
|
||||||
@ -105,9 +115,9 @@ find_package(ZLIB REQUIRED)
|
|||||||
if(all OR aspell)
|
if(all OR aspell)
|
||||||
set(aspell TRUE CACHE TYPE STRING)
|
set(aspell TRUE CACHE TYPE STRING)
|
||||||
find_package(ASPELL REQUIRED)
|
find_package(ASPELL REQUIRED)
|
||||||
else(all OR aspell)
|
else()
|
||||||
find_package(ASPELL)
|
find_package(ASPELL)
|
||||||
endif(all OR aspell)
|
endif()
|
||||||
set(aspell)
|
set(aspell)
|
||||||
|
|
||||||
message("")
|
message("")
|
||||||
@ -115,16 +125,16 @@ if(nls OR all)
|
|||||||
set(nls TRUE CACHE TYPE STRING)
|
set(nls TRUE CACHE TYPE STRING)
|
||||||
add_definitions(-DENABLE_NLS=1)
|
add_definitions(-DENABLE_NLS=1)
|
||||||
message("----- Building with ENABLE_NLS")
|
message("----- Building with ENABLE_NLS")
|
||||||
else(nls OR all)
|
else()
|
||||||
message("----- No nls, to enable use -Dnls=1")
|
message("----- No nls, to enable use -Dnls=1")
|
||||||
endif(nls OR all)
|
endif()
|
||||||
set(nls)
|
set(nls)
|
||||||
if(ASPELL_FOUND)
|
if(ASPELL_FOUND)
|
||||||
add_definitions(-DUSE_ASPELL=1)
|
add_definitions(-DUSE_ASPELL=1)
|
||||||
message("----- Building with USE_ASPELL")
|
message("----- Building with USE_ASPELL")
|
||||||
else(ASPELL_FOUND)
|
else()
|
||||||
message("----- No aspell, to get more information use -Daspell=1")
|
message("----- No aspell, to get more information use -Daspell=1")
|
||||||
endif(ASPELL_FOUND)
|
endif()
|
||||||
set(all)
|
set(all)
|
||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
@ -133,28 +143,28 @@ if(WIN32)
|
|||||||
set(WIN32_CONSOLE WIN32)
|
set(WIN32_CONSOLE WIN32)
|
||||||
set(LYX_QTMAIN_LIBRARY ${QT_QTMAIN_LIBRARY})
|
set(LYX_QTMAIN_LIBRARY ${QT_QTMAIN_LIBRARY})
|
||||||
message("----- Console disabled")
|
message("----- Console disabled")
|
||||||
else(noconsole)
|
else()
|
||||||
message("----- Console enabled, disable it with -Dnoconsole=1")
|
message("----- Console enabled, disable it with -Dnoconsole=1")
|
||||||
endif(noconsole)
|
endif()
|
||||||
endif(WIN32)
|
endif()
|
||||||
|
|
||||||
set(LYX_DIR "")
|
set(PROGRAM_SUFFIX "\"\"")
|
||||||
set(TOP_SRCDIR "${TOP_SRC_DIR}")
|
set(LYX_ABS_TOP_SRCDIR "${CMAKE_SOURCE_DIR}")
|
||||||
set(PROGRAM_SUFFIX "")
|
set(LYX_ABS_INSTALLED_DATADIR "/usr/local/share/lyx")
|
||||||
set(LOCALEDIR "")
|
set(LYX_ABS_INSTALLED_LOCALEDIR "/usr/local/share/locale")
|
||||||
|
|
||||||
message("")
|
message("")
|
||||||
message("----- LYX_DIR : ${LYX_DIR}")
|
message("----- PROGRAM_SUFFIX : ${PROGRAM_SUFFIX}")
|
||||||
message("----- TOP_SRCDIR : ${TOP_SRCDIR}")
|
message("----- LYX_ABS_TOP_SRCDIR : ${LYX_ABS_TOP_SRCDIR}")
|
||||||
message("----- PROGRAM_SUFFIX: ${PROGRAM_SUFFIX}")
|
message("----- LYX_ABS_INSTALLED_DATADIR : ${LYX_ABS_INSTALLED_DATADIR}")
|
||||||
message("----- LOCALEDIR : ${LOCALEDIR}")
|
message("----- LYX_ABS_INSTALLED_LOCALEDIR : ${LYX_ABS_INSTALLED_LOCALEDIR}")
|
||||||
message("")
|
message("")
|
||||||
|
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DNOMINMAX)
|
ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DNOMINMAX)
|
||||||
# disable checked iterators for msvc release builds to get maximum speed
|
# disable checked iterators for msvc release builds to get maximum speed
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /D_SECURE_SCL=0")
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /D_SECURE_SCL=0")
|
||||||
endif(MSVC)
|
endif()
|
||||||
|
|
||||||
add_definitions(-DBOOST_USER_CONFIG="<config.h>")
|
add_definitions(-DBOOST_USER_CONFIG="<config.h>")
|
||||||
|
|
||||||
@ -170,11 +180,11 @@ if(MSVC AND NOT disable-pch)
|
|||||||
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /DLYX_PCH_STL /DLYX_PCH_BOOST /DLYX_PCH_QT4")
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /DLYX_PCH_STL /DLYX_PCH_BOOST /DLYX_PCH_QT4")
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /DLYX_PCH_STL /DLYX_PCH_BOOST /DLYX_PCH_QT4")
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /DLYX_PCH_STL /DLYX_PCH_BOOST /DLYX_PCH_QT4")
|
||||||
set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} /DLYX_PCH_STL /DLYX_PCH_BOOST")
|
set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} /DLYX_PCH_STL /DLYX_PCH_BOOST")
|
||||||
else(MSVC AND NOT disable-pch)
|
else()
|
||||||
set(disable-pch TRUE CACHE TYPE STRING)
|
set(disable-pch TRUE CACHE TYPE STRING)
|
||||||
macro(lyx_add_msvc_pch)
|
macro(lyx_add_msvc_pch)
|
||||||
endmacro(lyx_add_msvc_pch)
|
endmacro(lyx_add_msvc_pch)
|
||||||
endif(MSVC AND NOT disable-pch)
|
endif()
|
||||||
|
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
if(WALL)
|
if(WALL)
|
||||||
@ -185,49 +195,49 @@ if(MSVC)
|
|||||||
set(WARNING_LEVEL_MESSAGE "(switch to warning level 3 with -DWALL=0)")
|
set(WARNING_LEVEL_MESSAGE "(switch to warning level 3 with -DWALL=0)")
|
||||||
|
|
||||||
if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
|
if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
|
||||||
STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
string(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
||||||
else(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
|
else()
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
|
||||||
endif(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
|
endif()
|
||||||
|
|
||||||
if(CMAKE_C_FLAGS MATCHES "/W[0-4]")
|
if(CMAKE_C_FLAGS MATCHES "/W[0-4]")
|
||||||
STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
|
string(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
|
||||||
else(CMAKE_C_FLAGS MATCHES "/W[0-4]")
|
else()
|
||||||
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4")
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4")
|
||||||
endif(CMAKE_C_FLAGS MATCHES "/W[0-4]")
|
endif()
|
||||||
|
|
||||||
# add here warnings which should produce an error /weXXXX
|
# add here warnings which should produce an error /weXXXX
|
||||||
SET(MSVC_W_ERROR "/we4101 /we4189")
|
set(MSVC_W_ERROR "/we4101 /we4189")
|
||||||
# add here warnings which should be disabled /wdXXXX
|
# add here warnings which should be disabled /wdXXXX
|
||||||
SET(MSVC_W_DISABLE "/wd4800 /wd4996 /wd4311 /wd4312 /wd4505 /wd4267 /wd4512 /wd4245 /wd4127 /wd4180")
|
set(MSVC_W_DISABLE "/wd4800 /wd4996 /wd4311 /wd4312 /wd4505 /wd4267 /wd4512 /wd4245 /wd4127 /wd4180")
|
||||||
|
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /Wp64 ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /Wp64 ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /Wp64 ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /Wp64 ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
||||||
set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} /Wp64 ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} /Wp64 ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
||||||
|
|
||||||
else(WALL)
|
else()
|
||||||
set(WALL 0 CACHE TYPE STRING FORCE)
|
set(WALL 0 CACHE TYPE STRING FORCE)
|
||||||
|
|
||||||
set(CMAKE_CXX_WARNING_LEVEL 3 CACHE TYPE STRING FORCE)
|
set(CMAKE_CXX_WARNING_LEVEL 3 CACHE TYPE STRING FORCE)
|
||||||
set(WARNING_LEVEL_MESSAGE "(switch to warning level 4 with -DWALL=1)")
|
set(WARNING_LEVEL_MESSAGE "(switch to warning level 4 with -DWALL=1)")
|
||||||
|
|
||||||
# add here warnings which should produce an error /weXXXX
|
# add here warnings which should produce an error /weXXXX
|
||||||
SET(MSVC_W_ERROR "/we4101 /we4189")
|
set(MSVC_W_ERROR "/we4101 /we4189")
|
||||||
# add here warnings which should be disabled /wdXXXX
|
# add here warnings which should be disabled /wdXXXX
|
||||||
SET(MSVC_W_DISABLE "/wd4800 /wd4996 /wd4267 /wd4180")
|
set(MSVC_W_DISABLE "/wd4800 /wd4996 /wd4267 /wd4180")
|
||||||
|
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
||||||
set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
|
||||||
|
|
||||||
endif(WALL)
|
endif()
|
||||||
|
|
||||||
message("----- Warning level : ${CMAKE_CXX_WARNING_LEVEL} ${WARNING_LEVEL_MESSAGE}")
|
message("----- Warning level : ${CMAKE_CXX_WARNING_LEVEL} ${WARNING_LEVEL_MESSAGE}")
|
||||||
message("----- Warnings as errors : ${MSVC_W_ERROR}")
|
message("----- Warnings as errors : ${MSVC_W_ERROR}")
|
||||||
message("----- Warnings disabled : ${MSVC_W_DISABLE}")
|
message("----- Warnings disabled : ${MSVC_W_DISABLE}")
|
||||||
message("")
|
message("")
|
||||||
|
|
||||||
endif(MSVC)
|
endif()
|
||||||
|
|
||||||
# create config.h
|
# create config.h
|
||||||
include(ConfigureChecks.cmake)
|
include(ConfigureChecks.cmake)
|
||||||
@ -252,6 +262,5 @@ add_subdirectory(boost)
|
|||||||
add_subdirectory(intl)
|
add_subdirectory(intl)
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
|
|
||||||
|
|
||||||
include(../Install)
|
include(../Install)
|
||||||
|
|
||||||
|
@ -35,10 +35,10 @@ if(WINDEPS)
|
|||||||
message("------ qmake not found. Add YOUR_PATH\\lyx-windows-deps-msvc-qt4\\qt-4\\bin")
|
message("------ qmake not found. Add YOUR_PATH\\lyx-windows-deps-msvc-qt4\\qt-4\\bin")
|
||||||
message("------ to PATH: set PATH=%PATH%;YOUR_PATH\\lyx-windows-deps-msvc-qt4\\qt-4\\bin")
|
message("------ to PATH: set PATH=%PATH%;YOUR_PATH\\lyx-windows-deps-msvc-qt4\\qt-4\\bin")
|
||||||
message(FATAL_ERROR "Exit.")
|
message(FATAL_ERROR "Exit.")
|
||||||
else(NOT LYX_QMAKE)
|
else()
|
||||||
GET_FILENAME_COMPONENT(LYX_QMAKE_PATH ${LYX_QMAKE} PATH)
|
GET_FILENAME_COMPONENT(LYX_QMAKE_PATH ${LYX_QMAKE} PATH)
|
||||||
set(WINDEPSDIR "${LYX_QMAKE_PATH}/../..")
|
set(WINDEPSDIR "${LYX_QMAKE_PATH}/../..")
|
||||||
endif(NOT LYX_QMAKE)
|
endif()
|
||||||
|
|
||||||
set(GNUWIN32_DIR ${WINDEPSDIR})
|
set(GNUWIN32_DIR ${WINDEPSDIR})
|
||||||
|
|
||||||
@ -53,7 +53,7 @@ if(WINDEPS)
|
|||||||
set(QT_UIC_EXECUTABLE "${WINDEPSDIR}/qt-4/bin/uic.exe" CACHE TYPE STRING FORCE)
|
set(QT_UIC_EXECUTABLE "${WINDEPSDIR}/qt-4/bin/uic.exe" CACHE TYPE STRING FORCE)
|
||||||
set(QT_RCC_EXECUTABLE "${WINDEPSDIR}/qt-4/bin/rcc.exe" CACHE TYPE STRING FORCE)
|
set(QT_RCC_EXECUTABLE "${WINDEPSDIR}/qt-4/bin/rcc.exe" CACHE TYPE STRING FORCE)
|
||||||
|
|
||||||
endif(WINDEPS)
|
endif()
|
||||||
|
|
||||||
find_package(GNUWIN32 REQUIRED)
|
find_package(GNUWIN32 REQUIRED)
|
||||||
|
|
||||||
@ -80,11 +80,11 @@ set(CMAKE_LIBRARY_PATH ${CMAKE_LIBRARY_PATH}
|
|||||||
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${_gnuwin32_dir}/include)
|
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${_gnuwin32_dir}/include)
|
||||||
|
|
||||||
|
|
||||||
else(WIN32)
|
else()
|
||||||
|
|
||||||
set(_prog_path ~/bin)
|
set(_prog_path ~/bin)
|
||||||
|
|
||||||
endif(WIN32)
|
endif()
|
||||||
|
|
||||||
|
|
||||||
GET_FILENAME_COMPONENT(lyx_dir_readme ${CMAKE_SOURCE_DIR}/../../README ABSOLUTE)
|
GET_FILENAME_COMPONENT(lyx_dir_readme ${CMAKE_SOURCE_DIR}/../../README ABSOLUTE)
|
||||||
@ -92,9 +92,9 @@ GET_FILENAME_COMPONENT(TOP_SRC_DIR ${lyx_dir_readme} PATH)
|
|||||||
|
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
set(locale_dir Resources/locale)
|
set(locale_dir Resources/locale)
|
||||||
else(WIN32)
|
else()
|
||||||
set(locale_dir share/locale)
|
set(locale_dir share/locale)
|
||||||
endif(WIN32)
|
endif()
|
||||||
|
|
||||||
set(PREFIX ${_prog_path}/LyX)
|
set(PREFIX ${_prog_path}/LyX)
|
||||||
set(LOCAL_DIR ${PREFIX}/${locale_dir})
|
set(LOCAL_DIR ${PREFIX}/${locale_dir})
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
|
# Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
|
||||||
#
|
#
|
||||||
|
|
||||||
project(lyx-${qt_postfix})
|
project(lyx)
|
||||||
|
|
||||||
include_directories(${TOP_SRC_DIR}/src)
|
include_directories(${TOP_SRC_DIR}/src)
|
||||||
|
|
||||||
@ -30,7 +30,7 @@ list(REMOVE_ITEM lyx_sources
|
|||||||
if(ASPELL_FOUND)
|
if(ASPELL_FOUND)
|
||||||
include_directories(${ASPELL_INCLUDE_DIR})
|
include_directories(${ASPELL_INCLUDE_DIR})
|
||||||
set(lyx_sources ${lyx_sources} ${TOP_SRC_DIR}/src/ASpell.cpp)
|
set(lyx_sources ${lyx_sources} ${TOP_SRC_DIR}/src/ASpell.cpp)
|
||||||
endif(ASPELL_FOUND)
|
endif()
|
||||||
|
|
||||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||||
|
|
||||||
@ -39,22 +39,22 @@ lyx_add_msvc_pch(lyx)
|
|||||||
|
|
||||||
if(NOT MERGE_FILES)
|
if(NOT MERGE_FILES)
|
||||||
set(lyx_sources ${lyx_sources})
|
set(lyx_sources ${lyx_sources})
|
||||||
else(NOT MERGE_FILES)
|
else()
|
||||||
lyx_const_touched_files(_allinone lyx_sources)
|
lyx_const_touched_files(_allinone lyx_sources)
|
||||||
set(lyx_sources ${_allinone_files})
|
set(lyx_sources ${_allinone_files})
|
||||||
endif(NOT MERGE_FILES)
|
endif()
|
||||||
|
|
||||||
add_executable(lyx-${qt_postfix}
|
add_executable(lyx
|
||||||
${WIN32_CONSOLE}
|
${WIN32_CONSOLE}
|
||||||
${lyx_sources}
|
${lyx_sources}
|
||||||
${lyx_headers}
|
${lyx_headers}
|
||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(lyx-${qt_postfix}
|
target_link_libraries(lyx
|
||||||
mathed
|
mathed
|
||||||
insets
|
insets
|
||||||
frontends
|
frontends
|
||||||
frontend_${qt_postfix}
|
frontend_qt4
|
||||||
graphics
|
graphics
|
||||||
support
|
support
|
||||||
intl
|
intl
|
||||||
@ -63,15 +63,15 @@ target_link_libraries(lyx-${qt_postfix}
|
|||||||
)
|
)
|
||||||
|
|
||||||
if(ASPELL_FOUND)
|
if(ASPELL_FOUND)
|
||||||
target_link_libraries(lyx-${qt_postfix} ${ASPELL_LIBRARY})
|
target_link_libraries(lyx ${ASPELL_LIBRARY})
|
||||||
endif(ASPELL_FOUND)
|
endif()
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE)
|
||||||
target_link_libraries(lyx-${qt_postfix} "-bind_at_load" )
|
target_link_libraries(lyx "-bind_at_load" )
|
||||||
target_link_libraries(lyx-${qt_postfix} "-framework Carbon" )
|
target_link_libraries(lyx "-framework Carbon" )
|
||||||
endif(APPLE)
|
endif()
|
||||||
|
|
||||||
project_source_group("${GROUP_CODE}" lyx_sources lyx_headers)
|
project_source_group("${GROUP_CODE}" lyx_sources lyx_headers)
|
||||||
|
|
||||||
install(TARGETS lyx-${qt_postfix} DESTINATION bin)
|
install(TARGETS lyx DESTINATION bin)
|
||||||
|
|
||||||
|
@ -9,8 +9,7 @@ project(frontends)
|
|||||||
include_directories(${TOP_SRC_DIR}/src/frontends)
|
include_directories(${TOP_SRC_DIR}/src/frontends)
|
||||||
|
|
||||||
add_subdirectory(controllers)
|
add_subdirectory(controllers)
|
||||||
add_subdirectory(${qt_postfix})
|
add_subdirectory(qt4)
|
||||||
|
|
||||||
|
|
||||||
file(GLOB frontends_sources ${TOP_SRC_DIR}/src/frontends/${LYX_CPP_FILES})
|
file(GLOB frontends_sources ${TOP_SRC_DIR}/src/frontends/${LYX_CPP_FILES})
|
||||||
file(GLOB frontends_headers ${TOP_SRC_DIR}/src/frontends/${LYX_HPP_FILES})
|
file(GLOB frontends_headers ${TOP_SRC_DIR}/src/frontends/${LYX_HPP_FILES})
|
||||||
@ -20,10 +19,10 @@ lyx_add_msvc_pch(frontends)
|
|||||||
|
|
||||||
if(NOT MERGE_FILES)
|
if(NOT MERGE_FILES)
|
||||||
add_library(frontends ${library_type} ${frontends_sources} ${frontends_headers})
|
add_library(frontends ${library_type} ${frontends_sources} ${frontends_headers})
|
||||||
else(NOT MERGE_FILES)
|
else()
|
||||||
lyx_const_touched_files(_allinone frontends_sources)
|
lyx_const_touched_files(_allinone frontends_sources)
|
||||||
add_library(frontends ${library_type} ${_allinone_files})
|
add_library(frontends ${library_type} ${_allinone_files})
|
||||||
endif(NOT MERGE_FILES)
|
endif()
|
||||||
|
|
||||||
project_source_group("${GROUP_CODE}" frontends_sources frontends_headers)
|
project_source_group("${GROUP_CODE}" frontends_sources frontends_headers)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user