mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-06 07:47:12 +00:00
12 lines
296 B
CMake
12 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)
|