mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
8d79860ea7
The warning says: CMake Deprecation Warning at .../CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 3.5 will be removed from a future version of CMake. Spotted by Scott Kostyshak
67 lines
1.8 KiB
CMake
67 lines
1.8 KiB
CMake
|
|
cmake_minimum_required(VERSION 3.5.0)
|
|
|
|
set(LYX_IPO_SUPPORTED FALSE)
|
|
if (POLICY CMP0069)
|
|
cmake_policy(SET CMP0069 NEW)
|
|
if (LYX_USE_IPO MATCHES "ON")
|
|
set(LYX_IPO_SUPPORTED YES)
|
|
endif()
|
|
endif()
|
|
|
|
project(hunspell)
|
|
|
|
set(HUNSPELL_VERSION 1.7.0)
|
|
|
|
set(SRCDIR ${CMAKE_CURRENT_SOURCE_DIR}/${HUNSPELL_VERSION}/src)
|
|
|
|
include_directories(./ ${SRCDIR}/hunspell)
|
|
|
|
if(WIN32)
|
|
include_directories(${SRCDIR}/win_api)
|
|
set(HUNCONFIG ${SRCDIR}/win_api/config.h)
|
|
endif()
|
|
|
|
# LIBS
|
|
set(SRCS
|
|
${SRCDIR}/hunspell/affentry.cxx
|
|
${SRCDIR}/hunspell/affixmgr.cxx
|
|
${SRCDIR}/hunspell/csutil.cxx
|
|
${SRCDIR}/hunspell/hashmgr.cxx
|
|
${SRCDIR}/hunspell/suggestmgr.cxx
|
|
${SRCDIR}/hunspell/phonet.cxx
|
|
${SRCDIR}/hunspell/filemgr.cxx
|
|
${SRCDIR}/hunspell/hunzip.cxx
|
|
${SRCDIR}/hunspell/hunspell.cxx
|
|
${SRCDIR}/hunspell/replist.cxx)
|
|
|
|
set(HEADERS
|
|
${SRCDIR}/hunspell/affentry.hxx
|
|
${SRCDIR}/hunspell/htypes.hxx
|
|
${SRCDIR}/hunspell/affixmgr.hxx
|
|
${SRCDIR}/hunspell/csutil.hxx
|
|
${SRCDIR}/hunspell/hunspell.hxx
|
|
${SRCDIR}/hunspell/atypes.hxx
|
|
${SRCDIR}/hunspell/hunspell.h
|
|
${SRCDIR}/hunspell/suggestmgr.hxx
|
|
${SRCDIR}/hunspell/baseaffix.hxx
|
|
${SRCDIR}/hunspell/hashmgr.hxx
|
|
${SRCDIR}/hunspell/langnum.hxx
|
|
${SRCDIR}/hunspell/phonet.hxx
|
|
${SRCDIR}/hunspell/filemgr.hxx
|
|
${SRCDIR}/hunspell/hunzip.hxx
|
|
${SRCDIR}/hunspell/w_char.hxx
|
|
${SRCDIR}/hunspell/replist.hxx
|
|
${SRCDIR}/hunspell/hunvisapi.h)
|
|
|
|
add_definitions(-DHUNSPELL_STATIC)
|
|
add_library(hunspell STATIC ${HEADERS} ${SRCS} ${HUNCONFIG})
|
|
|
|
set(HUNSPELL_LIBRARY hunspell CACHE STRING "Hunspell library" FORCE)
|
|
set(HUNSPELL_INCLUDE_DIR "${SRCDIR}/hunspell;${SRCDIR}" CACHE STRING "Hunspell include dirs" FORCE)
|
|
set(HUNSPELL_FOUND CACHE STRING "Hunspell found" FORCE)
|
|
|
|
set_target_properties(hunspell PROPERTIES
|
|
FOLDER "3rd_party"
|
|
INTERPROCEDURAL_OPTIMIZATION ${LYX_IPO_SUPPORTED})
|