Files
ggwave/examples/goertzel/CMakeLists.txt
2021-02-07 19:57:05 +02:00

17 lines
285 B
CMake

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}
)