goertzel : simple goertzel visualization tool

This commit is contained in:
Georgi Gerganov
2021-02-07 19:57:05 +02:00
parent 931549720a
commit 86cf1712cd
3 changed files with 525 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
set(TARGET goertzel)
add_executable(${TARGET} main.cpp)
target_include_directories(${TARGET} PRIVATE
..
${SDL2_INCLUDE_DIRS}
)
target_link_libraries(${TARGET} PRIVATE
ggwave
ggwave-common
ggwave-common-sdl2
imgui-sdl2
${CMAKE_THREAD_LIBS_INIT}
)