commit 22534c968660c3d98f867a131ee98844e85b1434
parent b28423086af574a5fabe49e1225c15575d589ccd
Author: Jean-Michaƫl Celerier <[email protected]>
Date: Sun, 28 Apr 2024 12:26:06 -0400
Fix build with non-MSVC on Win32
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -354,7 +354,7 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
add_compile_options(-Wno-c++1z-extensions -Wno-psabi
-Wno-unknown-warning-option)
endif ()
-if (WIN32)
+if (MSVC)
add_compile_options(/wd4141)
target_compile_options(kfr INTERFACE $<$<CXX_COMPILER_ID:MSVC>:/Zc:lambda>)
endif ()