From c3c7e6d609666f1698b5b6d4dfaff1167cb36886 Mon Sep 17 00:00:00 2001 From: Don Olmstead Date: Wed, 20 Apr 2022 13:56:51 -0400 Subject: FindICU: Show location of found libraries Announce locations of the libraries without the use of `ICU_DEBUG`. --- Modules/FindICU.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/FindICU.cmake b/Modules/FindICU.cmake index 1bae825..91dcba5 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}) -- cgit v0.12