21 lines
506 B
CMake
21 lines
506 B
CMake
# -*- cmake -*-
|
|
include(Prebuilt)
|
|
|
|
if (LINUX)
|
|
use_prebuilt_binary(libuuid)
|
|
add_library( ll::fontconfig INTERFACE IMPORTED )
|
|
|
|
if( NOT USE_CONAN )
|
|
find_package(Fontconfig REQUIRED) # <FS:PC> Use system wide Fontconfig
|
|
target_link_libraries( ll::fontconfig INTERFACE Fontconfig::Fontconfig )
|
|
else()
|
|
target_link_libraries( ll::fontconfig INTERFACE CONAN_PKG::fontconfig )
|
|
endif()
|
|
endif (LINUX)
|
|
|
|
if( NOT USE_CONAN )
|
|
use_prebuilt_binary(libhunspell)
|
|
endif()
|
|
|
|
use_prebuilt_binary(slvoice)
|