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 4b6c0c618d4997190aae124969aa843e3cabecd0
parent 2f57357912f2a347818563f3582c943baa13b752
Author: Dan Levin <[email protected]>
Date:   Tue, 13 Oct 2020 10:47:33 +0100

Merge pull request #105 from xnorpx/fix123

Use new lambda processor in vs2019 to fix compiler error in vec unaliā€¦
Diffstat:
Mtests/CMakeLists.txt | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt @@ -139,6 +139,10 @@ if (ENABLE_DFT) endif () target_link_libraries(all_tests kfr_io) +if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + target_compile_options(all_tests PRIVATE /Zc:lambda) +endif () + function (add_x86_test ARCH) set(NAME ${ARCH})