mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-03 22:37:44 +00:00
11 lines
296 B
CMake
11 lines
296 B
CMake
include(PkgConfigWithFallback)
|
|
find_pkg_config_with_fallback(ICU
|
|
PKG_CONFIG_NAME icu-uc
|
|
LIB_NAMES icuuc icudata
|
|
INCLUDE_NAMES unicode/umachine.h
|
|
)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(ICU
|
|
REQUIRED_VARS ICU_LIBRARY
|
|
VERSION_VAR ICU_VERSION)
|