From fbcf7d67f9842179ec65e6b5836c9014039112be Mon Sep 17 00:00:00 2001 From: Sonja Happ Date: Fri, 7 Jan 2022 16:02:21 +0100 Subject: [PATCH] upgrade minimum required versions for spdlog (1.3.1 to 1.6.0) and fmtlib (5.2.0 to 5.3.0) --- common/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 2a93573e1..ff61c052f 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt @@ -55,8 +55,8 @@ endif() # Check packages find_package(OpenSSL 1.0.0 REQUIRED) find_package(CURL 7.29 REQUIRED) -find_package(spdlog 1.3.1 REQUIRED) -find_package(fmt 5.2.0 REQUIRED) +find_package(spdlog 1.6.0 REQUIRED) +find_package(fmt 5.3.0 REQUIRED) find_package(Criterion) pkg_check_modules(JANSSON IMPORTED_TARGET REQUIRED jansson>=2.7)