diff options
author | Oz Linden <oz@lindenlab.com> | 2014-03-19 17:30:07 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-03-19 17:30:07 -0400 |
commit | 776aadf4ef65681084268c3866058172c89b4259 (patch) | |
tree | 319c598d928b244047aabce1a8833f516f03b728 /indra/cmake/Hunspell.cmake | |
parent | cb2bd577099f87881d467249cac679200bb367f0 (diff) |
OPEN-199: replace the confusing STANDALONE switch with USESYSTEMLIBS
Diffstat (limited to 'indra/cmake/Hunspell.cmake')
-rwxr-xr-x | indra/cmake/Hunspell.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/cmake/Hunspell.cmake b/indra/cmake/Hunspell.cmake index 0c9cf93316..ef74d95b2a 100755 --- a/indra/cmake/Hunspell.cmake +++ b/indra/cmake/Hunspell.cmake @@ -4,9 +4,9 @@ include(Prebuilt) set(HUNSPELL_FIND_QUIETLY ON) set(HUNSPELL_FIND_REQUIRED ON) -if (STANDALONE) +if (USESYSTEMLIBS) include(FindHUNSPELL) -else (STANDALONE) +else (USESYSTEMLIBS) use_prebuilt_binary(libhunspell) if (WINDOWS) set(HUNSPELL_LIBRARY libhunspell) @@ -19,4 +19,4 @@ else (STANDALONE) endif() set(HUNSPELL_INCLUDE_DIRS ${LIBS_PREBUILT_DIR}/include/hunspell) use_prebuilt_binary(dictionaries) -endif (STANDALONE) +endif (USESYSTEMLIBS) |