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:
Kornel Benko 2009-07-13 07:44:00 +00:00
parent bbfc419c10
commit 27a71ede25
2 changed files with 12 additions and 0 deletions

View File

@ -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)

View File

@ -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)