From 349981b2a00d2243c68cbe65cc13d456112895bb Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Mon, 13 Jan 2025 19:47:15 +0000 Subject: [PATCH] Remove ICU version specified in CMakeLists It doesn't really serve any purpose any more, and could end up causing issues. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 40ccae85..6e40e71b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -75,7 +75,7 @@ endif() find_package(Boost REQUIRED) if(NOT CMAKE_SYSTEM_NAME STREQUAL "Windows") - find_package(ICU 71.1 REQUIRED COMPONENTS data uc) + find_package(ICU REQUIRED COMPONENTS data uc) find_package(TBB REQUIRED) endif()