summaryrefslogtreecommitdiff
path: root/Modules/FindICU.cmake
diff options
context:
space:
mode:
authorDon Olmstead <don.j.olmstead@gmail.com>2022-04-20 13:56:51 -0400
committerBrad King <brad.king@kitware.com>2022-04-21 12:54:02 -0400
commitc3c7e6d609666f1698b5b6d4dfaff1167cb36886 (patch)
tree74bbe5d07221cd1af826ea30c1b578a23c05a57c /Modules/FindICU.cmake
parent7fc013a9229087cbafeb9ff4c96d1d1acb71c5d6 (diff)
downloadcmake-c3c7e6d609666f1698b5b6d4dfaff1167cb36886.tar.gz
FindICU: Show location of found libraries
Announce locations of the libraries without the use of `ICU_DEBUG`.
Diffstat (limited to 'Modules/FindICU.cmake')
-rw-r--r--Modules/FindICU.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindICU.cmake b/Modules/FindICU.cmake
index 1bae825a53..91dcba5a8f 100644
--- a/Modules/FindICU.cmake
+++ b/Modules/FindICU.cmake
@@ -262,9 +262,9 @@ function(_ICU_FIND)
set("${component_found_compat}" "${${component_found_compat}}" PARENT_SCOPE)
if(component_found OR component_found_compat)
if (ICU_FIND_REQUIRED_${component})
- list(APPEND ICU_LIBS_FOUND "${component} (required)")
+ list(APPEND ICU_LIBS_FOUND "${component} (required): ${${component_cache}}")
else()
- list(APPEND ICU_LIBS_FOUND "${component} (optional)")
+ list(APPEND ICU_LIBS_FOUND "${component} (optional): ${${component_cache}}")
endif()
else()
if (ICU_FIND_REQUIRED_${component})