From 018d8aa266fc03eefea3640e89cdb27344bdf6cc Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Fri, 22 Nov 2024 12:10:53 +0200 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e7a2e85..811e588a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -274,7 +274,7 @@ if(MSVC) target_compile_options(spdlog PRIVATE "/Zc:__cplusplus") target_compile_options(spdlog_header_only INTERFACE "/Zc:__cplusplus") if(SPDLOG_MSVC_UTF8) - # fmt requires the /utf-8 flag when building with msvc. + # fmtlib requires the /utf-8 flag when building with msvc. # see https://github.com/fmtlib/fmt/pull/4159 on why the additional # "$<$,$>" checks are needed target_compile_options(spdlog PUBLIC $<$,$>:/utf-8>)