From ae54f7bc8a60b1cb1cabb17c06e518b195a3fff8 Mon Sep 17 00:00:00 2001 From: Jack Luo Date: Wed, 4 Dec 2024 22:14:09 +0800 Subject: [PATCH] Print the actual fmt version found rather than the minimum version. --- components/core/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/core/CMakeLists.txt b/components/core/CMakeLists.txt index 2a9154ab5..f83068731 100644 --- a/components/core/CMakeLists.txt +++ b/components/core/CMakeLists.txt @@ -153,7 +153,7 @@ endif() # Print the selected versions for debugging message(STATUS "Using spdlog version ${spdlog_VERSION}") -message(STATUS "Using fmt version ${FMT_MIN_VERSION}") +message(STATUS "Using fmt version ${fmt_VERSION}") # Find and setup libarchive if(CLP_USE_STATIC_LIBS)