spectrogram : add simple spectrogram tool (#17)

This commit is contained in:
Georgi Gerganov
2021-02-09 21:25:47 +02:00
committed by GitHub
parent 9b3bcfb619
commit ea60fffd9e
4 changed files with 626 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
set(TARGET spectrogram)
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}
)