commit 3cf9f108346b079ec1ac9bb12adef571e1ea388c
parent b28423086af574a5fabe49e1225c15575d589ccd
Author: Dan L CazarÃn <[email protected]>
Date: Sun, 28 Apr 2024 18:28:18 +0100
Merge pull request #225 from jcelerier/patch-1
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 ()