commit b0d0dbe194699a1e69f27f52323943de16b69a7d
parent 2f7a006b2036ad036cec9430ca4870b25e0af4e3
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date: Fri, 26 Jan 2024 14:46:45 +0000
Remove KFR_ENABLE_DFT_NP
Diffstat:
1 file changed, 0 insertions(+), 7 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -168,10 +168,8 @@ cmake_dependent_option(ENABLE_EXAMPLES "Enable KFR examples" ON "ENABLE_TESTS"
OFF)
if (CLANG)
option(KFR_ENABLE_DFT "Enable DFT and related algorithms." ON)
- option(KFR_ENABLE_DFT_NP "Enable Non-power of 2 DFT" ON)
else ()
option(KFR_ENABLE_DFT "Enable DFT and related algorithms." OFF)
- option(KFR_ENABLE_DFT_NP "Enable Non-power of 2 DFT" OFF)
endif ()
option(KFR_ENABLE_ASMTEST "Enable writing disassembly" OFF)
option(KFR_REGENERATE_TESTS "Regenerate auto tests" OFF)
@@ -190,11 +188,6 @@ if (KFR_ENABLE_CAPI_BUILD AND NOT KFR_ENABLE_DFT)
FATAL_ERROR
"KFR_ENABLE_CAPI_BUILD requires KFR_ENABLE_DFT to be enabled")
endif ()
-if (KFR_ENABLE_CAPI_BUILD AND NOT KFR_ENABLE_DFT_NP)
- message(
- FATAL_ERROR
- "KFR_ENABLE_CAPI_BUILD requires KFR_ENABLE_DFT_NP to be enabled")
-endif ()
if (NOT KFR_ARCH)
set(KFR_ARCH target)