From 0a4c0c959b496cf52369a180648c056648737853 Mon Sep 17 00:00:00 2001 From: Matiq Date: Tue, 18 Aug 2026 16:58:00 +0300 Subject: [PATCH] =?UTF-8?q?dsp:=20CMake=20-=20twin.cpp/phase=5Ftable.cpp?= =?UTF-8?q?=20=D0=B2=20=D0=BB=D0=B8=D0=B1=D1=83,=20executables=20harness+t?= =?UTF-8?q?win=5Fcheck,=20=D1=84=D0=B8=D0=BA=D1=81=20=D0=BF=D1=83=D1=82?= =?UTF-8?q?=D0=B5=D0=B9=20dsp/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dsp/CMakeLists.txt | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/dsp/CMakeLists.txt b/dsp/CMakeLists.txt index a54049e..65f8cac 100644 --- a/dsp/CMakeLists.txt +++ b/dsp/CMakeLists.txt @@ -7,18 +7,22 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) find_package(Threads REQUIRED) add_library(soothe2_dsp SHARED - dsp/fft_plan.cpp - dsp/fft_stage.cpp - dsp/cody_waite.cpp - dsp/twiddle_builder.cpp - dsp/fft.cpp - dsp/spectral.cpp - dsp/filter.cpp - dsp/detect.cpp - dsp/ms.cpp - dsp/harness.cpp + fft_plan.cpp + fft_stage.cpp + twiddle_builder.cpp + fft.cpp + spectral.cpp + filter.cpp + detect.cpp + twin.cpp + phase_table.cpp ) +add_executable(soothe2_harness harness.cpp) +add_executable(twin_check twin_check.cpp) +target_link_libraries(twin_check soothe2_dsp) +target_link_libraries(soothe2_harness soothe2_dsp) + target_include_directories(soothe2_dsp PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(soothe2_dsp Threads::Threads)