kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

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:
MCMakeLists.txt | 2+-
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 ()