summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2019-05-26 11:41:37 -0400
committerAllen Winter <allen.winter@kdab.com>2019-05-26 11:41:37 -0400
commit3eeae5d03c39982c7489921b481ebf73502775d8 (patch)
tree23eaded81fa02bd44d49f7fcc417bad430e3aaed /examples
parent7dc9a9674120fa8be2fc33e627211b515475207f (diff)
downloadlibical-git-3eeae5d03c39982c7489921b481ebf73502775d8.tar.gz
Remove our hand-written FindICU.cmake with the CMake versionallen/findicu
Diffstat (limited to 'examples')
-rw-r--r--examples/CMakeLists.txt7
1 files changed, 2 insertions, 5 deletions
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()