From fa319b46b1b2237ef3992e4d05b1e45268240871 Mon Sep 17 00:00:00 2001 From: Sergio Lopez Date: Wed, 27 Nov 2024 13:15:58 +0100 Subject: [PATCH] Bump fmtlib to 11.0.0 Bump fmtlib to 11.0.0 to avoid errors with the latest compilers. Signed-off-by: Sergio Lopez --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 282faecc..1a1c7355 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -153,7 +153,7 @@ endif() if(NOT TARGET fmt::fmt) if(KOMPUTE_OPT_USE_BUILT_IN_FMT) FetchContent_Declare(fmt GIT_REPOSITORY https://github.com/fmtlib/fmt.git - GIT_TAG 10.0.0) # Source: https://github.com/fmtlib/fmt/releases + GIT_TAG 11.0.0) # Source: https://github.com/fmtlib/fmt/releases FetchContent_MakeAvailable(fmt) else() find_package(fmt REQUIRED)