From 02cfee3f184e6fdcc3b483ef399fb5d2bb1e8ec7 Mon Sep 17 00:00:00 2001 From: spectranator Date: Sun, 15 Dec 2024 17:51:34 +0100 Subject: [PATCH] Remove hard fmt version requirement in main CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 097b79e7a6..034fcd5afa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -298,7 +298,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin) # Enforce the search mode of non-required packages for better and shorter failure messages find_package(Boost 1.79.0 REQUIRED context) find_package(enet 1.3 MODULE) -find_package(fmt 11 REQUIRED) +find_package(fmt REQUIRED) find_package(LLVM 17.0.2 MODULE COMPONENTS Demangle) find_package(lz4 REQUIRED) find_package(nlohmann_json 3.8 REQUIRED)