commit a0ec5d2961380f66a9d0d3fa0d31679ba2752405 parent b65a5b1e1bce3fa151f46067d586ead4e5f159c6 Author: d.levin256@gmail.com <d.levin256@gmail.com> Date: Mon, 12 Feb 2024 14:30:41 +0000 /Zc:lambda as generated expression Diffstat:
M | CMakeLists.txt | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -341,9 +341,9 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") add_compile_options(-Wno-c++1z-extensions -Wno-psabi -Wno-unknown-warning-option) endif () -if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") +if (WIN32) add_compile_options(/wd4141) - target_compile_options(kfr INTERFACE /Zc:lambda) + target_compile_options(kfr INTERFACE $<$<CXX_COMPILER_ID:MSVC>:/Zc:lambda>) endif () if (NOT KFR_ENABLE_DFT)