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 349e7a17d3a881cdce469f3395383f501529af85
parent c21a26f97f85dff4bb05b6662ce954ddbb6e7b77
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date:   Fri, 13 Sep 2024 03:54:26 +0100

Leave stdlib unspecified for Android

Diffstat:
MCMakeLists.txt | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -325,9 +325,8 @@ if (WIN32) add_definitions(-D_ENABLE_EXTENDED_ALIGNED_STORAGE) endif () -if (IOS) - set(STD_LIB) -else () +set(STD_LIB) +if (NOT IOS AND NOT ANDROID) set(STD_LIB stdc++) endif ()