mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 03:11:59 +00:00
Check for hunspell
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30534 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
bbfc419c10
commit
27a71ede25
@ -194,6 +194,14 @@ if(use_external_libintl)
|
||||
add_definitions(-DHAVE_GETTEXT)
|
||||
endif()
|
||||
|
||||
find_file(HUNSPELL_FOUND hunspell.hxx)
|
||||
|
||||
if (HUNSPELL_FOUND)
|
||||
message(STATUS "----- Building with Hunspell)
|
||||
else()
|
||||
message(STATUS "----- Hunspell not found, building without hunspell support")
|
||||
endif()
|
||||
|
||||
message(STATUS "")
|
||||
if(nls OR all)
|
||||
set(nls TRUE CACHE TYPE STRING)
|
||||
|
@ -29,6 +29,10 @@ list(REMOVE_ITEM lyx_sources
|
||||
${TOP_SRC_DIR}/src/Variables.cpp
|
||||
${TOP_SRC_DIR}/src/Section.cpp)
|
||||
|
||||
if (NOT HUNSPELL_FOUND)
|
||||
list(REMOVE_ITEM lyx_sources ${TOP_SRC_DIR}/src/HunspellSpellChecker.cpp)
|
||||
endif()
|
||||
|
||||
if (ASPELL_FOUND)
|
||||
include_directories(${ASPELL_INCLUDE_DIR})
|
||||
list(APPEND lyx_sources ${TOP_SRC_DIR}/src/ASpell.cpp)
|
||||
|
Loading…
Reference in New Issue
Block a user