diff options
author | Nicky <nicky.dasmijn@gmail.com> | 2022-04-19 20:28:34 +0200 |
---|---|---|
committer | Nicky <nicky.dasmijn@gmail.com> | 2022-04-19 20:28:34 +0200 |
commit | d6b34d41afc1f77a28e60ae1f9e22b61323052fa (patch) | |
tree | d673e49924286318e3a25219f0507ce0104504ef /indra/cmake/Hunspell.cmake | |
parent | ca839307f9edb5f5b6807a2a7185733518c241cf (diff) |
Finishing touches, making sure even with conan all needed 3ps are installed and usable.
This brings the source to be able to run tests in conan mode.
Diffstat (limited to 'indra/cmake/Hunspell.cmake')
-rw-r--r-- | indra/cmake/Hunspell.cmake | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/cmake/Hunspell.cmake b/indra/cmake/Hunspell.cmake index c372d83f8d..6e92611cc9 100644 --- a/indra/cmake/Hunspell.cmake +++ b/indra/cmake/Hunspell.cmake @@ -2,6 +2,8 @@ include(Prebuilt) include_guard() +use_prebuilt_binary(dictionaries) + add_library( ll::hunspell INTERFACE IMPORTED ) use_conan_binary(hunspell) use_prebuilt_binary(libhunspell) @@ -13,4 +15,3 @@ elseif(LINUX) target_link_libraries( ll::hunspell INTERFACE hunspell-1.3) endif() target_include_directories( ll::hunspell SYSTEM INTERFACE ${LIBS_PREBUILT_DIR}/include/hunspell) -use_prebuilt_binary(dictionaries) |