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 3e2c011747e56e2d13db1b39916693e40e721661
parent 3130ea23077935a0d112b3d89eff3b58c9f9fc1e
Author: [email protected] <[email protected]>
Date:   Tue, 13 Nov 2018 22:48:28 +0300

Fix multiarch test

Diffstat:
Mtests/CMakeLists.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt @@ -25,7 +25,7 @@ add_definitions(-DKFR_TESTING=1) include_directories(../include) if (NOT ARM) - if(MSVC) + if(MSVC AND NOT CLANG) add_executable(multiarch multiarch.cpp multiarch_fir_sse2.cpp multiarch_fir_avx.cpp ${KFR_SRC}) set_source_files_properties(multiarch_fir_sse2.cpp PROPERTIES COMPILE_FLAGS /arch:SSE2) set_source_files_properties(multiarch_fir_avx.cpp PROPERTIES COMPILE_FLAGS /arch:AVX)