mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-02-06 16:47:59 +08:00
17 lines
288 B
CMake
17 lines
288 B
CMake
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}
|
|
)
|