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 05b55b3ac8d443f8ed1beb8e928e1c1e8c070497
parent ef5cb076f045daa4355fb0558ea39165ee55f704
Author: [email protected] <[email protected]>
Date:   Tue, 17 Mar 2020 13:09:05 +0000

KFR 4.2.0

Diffstat:
MCHANGELOG.md | 16++++++++++++++++
Minclude/kfr/capi.h | 2+-
Minclude/kfr/kfr.h | 2+-
3 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## 4.2.0 + +2020-02-17 + +#### Added + +- `ENABLE_DFT_MULTIARCH` cmake option can be used to build `kfr_dft` with multiple architectures support (x86/x86_64 only) +- `config.h` is generated during install step with all `#define`s needed for correct usage of installed libraries + +#### Changed + +- `CMAKE_INSTALL_PREFIX` is reset to empty on Win32 (can be overriden in cmake command line) +- C API binary is now installed using install command (`make install`, `ninja install` or `cmake --build . --target install`) + +#### Fixed + ## 4.1.0 2020-03-04 diff --git a/include/kfr/capi.h b/include/kfr/capi.h @@ -77,7 +77,7 @@ extern "C" KFR_ARCH_AVX512 = 8, }; -#define KFR_HEADERS_VERSION 40100 +#define KFR_HEADERS_VERSION 40200 KFR_API_SPEC const char* kfr_version_string(); KFR_API_SPEC uint32_t kfr_version(); diff --git a/include/kfr/kfr.h b/include/kfr/kfr.h @@ -11,7 +11,7 @@ #include "cident.h" #define KFR_VERSION_MAJOR 4 -#define KFR_VERSION_MINOR 1 +#define KFR_VERSION_MINOR 2 #define KFR_VERSION_PATCH 0 #define KFR_VERSION_LABEL ""