From f4627963ca834f66aad8a5e4379f52eed49905e1 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Tue, 19 Sep 2023 19:11:15 +0100 Subject: [PATCH] Remove EXACT from ICU find_package So that libloot can be built on Arch Linux, which ships ICU 73.1. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 534ba8d3..1d041ffa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,7 +61,7 @@ endif() find_package(Boost REQUIRED) if(NOT CMAKE_SYSTEM_NAME STREQUAL "Windows") - find_package(ICU 71.1 EXACT REQUIRED COMPONENTS data uc) + find_package(ICU 71.1 REQUIRED COMPONENTS data uc) find_package(TBB REQUIRED) endif()