From 929bf2de375dba6f3a24a3a8fe681389b2b58a5b Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 9 Oct 2025 04:03:39 +0000 Subject: [PATCH] fix "icu-cu" -> "icu-uc" typo in cmake files (#468) --- cmake/cxxopts.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/cxxopts.cmake b/cmake/cxxopts.cmake index b26c18a..449ec19 100644 --- a/cmake/cxxopts.cmake +++ b/cmake/cxxopts.cmake @@ -157,7 +157,7 @@ function(cxxopts_install_logic) set(PKG_CONFIG_FILE_NAME "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc") if(CXXOPTS_USE_UNICODE_HELP) - set(PKG_CONFIG_REQUIRES "icu-cu") + set(PKG_CONFIG_REQUIRES "icu-uc") set(PKG_CONFIG_EXTRA_CFLAGS "-DCXXOPTS_USE_UNICODE") endif() configure_file("${PackagingTemplatesDir}/pkgconfig.pc.in" "${PKG_CONFIG_FILE_NAME}" @ONLY)