summaryrefslogtreecommitdiff
path: root/indra/cmake/Hunspell.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'indra/cmake/Hunspell.cmake')
-rw-r--r--indra/cmake/Hunspell.cmake28
1 files changed, 12 insertions, 16 deletions
diff --git a/indra/cmake/Hunspell.cmake b/indra/cmake/Hunspell.cmake
index 970b06b81f..81702cbd77 100644
--- a/indra/cmake/Hunspell.cmake
+++ b/indra/cmake/Hunspell.cmake
@@ -6,19 +6,15 @@ if( TARGET hunspell::hunspell )
endif()
create_target( hunspell::hunspell )
-if (USESYSTEMLIBS)
- include(FindHUNSPELL)
-else (USESYSTEMLIBS)
- use_prebuilt_binary(libhunspell)
- if (WINDOWS)
- set_target_libraries( hunspell::hunspell libhunspell)
- elseif(DARWIN)
- set_target_libraries( hunspell::hunspell hunspell-1.3)
- elseif(LINUX)
- set_target_libraries( hunspell::hunspell hunspell-1.3)
- else()
- message(FATAL_ERROR "Invalid platform")
- endif()
- set_target_include_dirs( hunspell::hunspell ${LIBS_PREBUILT_DIR}/include/hunspell)
- use_prebuilt_binary(dictionaries)
-endif (USESYSTEMLIBS)
+use_prebuilt_binary(libhunspell)
+if (WINDOWS)
+ set_target_libraries( hunspell::hunspell libhunspell)
+elseif(DARWIN)
+ set_target_libraries( hunspell::hunspell hunspell-1.3)
+elseif(LINUX)
+ set_target_libraries( hunspell::hunspell hunspell-1.3)
+else()
+ message(FATAL_ERROR "Invalid platform")
+endif()
+set_target_include_dirs( hunspell::hunspell ${LIBS_PREBUILT_DIR}/include/hunspell)
+use_prebuilt_binary(dictionaries)