mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Cmake build: Try to find hunspell.hxx for linunx _and_ for OSX
This commit is contained in:
parent
201acf0279
commit
9d0548e877
@ -5,7 +5,13 @@ else()
|
||||
find_library(HUNSPELL_LIBRARY NAMES "hunspell" "hunspell-1.2" PATHS "/usr/local/lib" ${SYSTEM_LIB_DIRS} "/usr/lib64")
|
||||
endif()
|
||||
|
||||
FIND_PATH(HUNSPELL_INCLUDE_DIR "hunspell.hxx")
|
||||
if (NOT HUNSPELL_INCLUDE_DIR)
|
||||
FIND_PATH(HUNSPELL_INCLUDE_DIR "hunspell/hunspell.hxx")
|
||||
if (HUNSPELL_INCLUDE_DIR)
|
||||
set(HUNSPELL_INCLUDE_DIR "${HUNSPELL_INCLUDE_DIR}/hunspell")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# handle the QUIETLY and REQUIRED arguments and
|
||||
# set HUNSPELL_FOUND to TRUE if all listed variables are TRUE
|
||||
|
Loading…
Reference in New Issue
Block a user