diff --git a/CMakeLists.txt b/CMakeLists.txt index 00b1b5c56..b0ffca49f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -274,9 +274,9 @@ 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 with huilding with msvc. + # fmt requires the /utf-8 flag with huilding with msvc. # see https://github.com/fmtlib/fmt/pull/4159 on why the additional - # "$<$,$>" are needed + # "$<$,$>" are needed target_compile_options(spdlog PUBLIC $<$,$>:/utf-8>) target_compile_options(spdlog_header_only INTERFACE $<$,$>:/utf-8>) endif()