]> git.lyx.org Git - lyx.git/blob - development/cmake/modules/FindEnchant.cmake
Safe line break to increase precision of error reporting in Listings caption
[lyx.git] / development / cmake / modules / FindEnchant.cmake
1 if(WIN32)
2         find_library(ENCHANT_LIBRARY "libenchant")
3         find_path(ENCHANT_INCLUDE_DIR "enchant++.h")
4 else()
5   find_library(ENCHANT_LIBRARY "enchant"  
6         "/usr/local/lib" 
7         ${SYSTEM_LIB_DIRS}
8         "/opt/local/lib")
9   find_path(ENCHANT_INCLUDE_DIR "enchant++.h" PATHS 
10                 /usr/local/include
11                 /usr/local/include/enchant
12                 /usr/include
13                 /usr/include/enchant
14                 /opt/local/include/enchant)
15 endif()
16
17 # handle the QUIETLY and REQUIRED arguments and
18 # set ENCHANT_FOUND to TRUE if all listed variables are TRUE
19 include(FindPackageHandleStandardArgs)
20 find_package_handle_standard_args(ENCHANT DEFAULT_MSG ENCHANT_LIBRARY ENCHANT_INCLUDE_DIR)
21
22 mark_as_advanced(ENCHANT_LIBRARY ENCHANT_INCLUDE_DIR)