From 3eeae5d03c39982c7489921b481ebf73502775d8 Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Sun, 26 May 2019 11:41:37 -0400 Subject: Remove our hand-written FindICU.cmake with the CMake version --- examples/CMakeLists.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'examples/CMakeLists.txt') diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 8a18cf97..0c241f4d 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -30,12 +30,9 @@ else() ) target_link_libraries(doesnothing ${CMAKE_THREAD_LIBS_INIT}) if(ICU_FOUND) - target_link_libraries(doesnothing ${ICU_LIBRARY}) + target_link_libraries(doesnothing ${ICU_LIBRARIES}) endif() - if(ICU_I18N_FOUND) - target_link_libraries(doesnothing ${ICU_I18N_LIBRARY}) - endif() - if(BDB_FOUND) + if(BDB_FOUND) target_link_libraries(doesnothing ${BDB_LIBRARY}) endif() endif() -- cgit v1.2.1