blob: 1247ac778f7f788da6bbe539d5ab62ab78228700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
cmake_minimum_required(VERSION 3.1)
project(TestFindICU LANGUAGES CXX)
include(CTest)
find_package(ICU REQUIRED COMPONENTS i18n uc)
add_executable(test_icu_tgt main.cpp)
target_link_libraries(test_icu_tgt ICU::i18n ICU::uc)
add_test(NAME test_icu_tgt COMMAND test_icu_tgt)
add_executable(test_icu_var main.cpp)
target_include_directories(test_icu_var PRIVATE ${ICU_INCLUDE_DIRS})
target_link_libraries(test_icu_var PRIVATE ${ICU_LIBRARIES})
add_test(NAME test_icu_var COMMAND test_icu_var)
|