Files
ggwave/examples/ggwave-to-file/CMakeLists.txt
2021-01-09 13:24:54 +02:00

14 lines
228 B
CMake

set(TARGET ggwave-to-file)
add_executable(${TARGET} main.cpp)
target_include_directories(${TARGET} PRIVATE
..
)
target_link_libraries(${TARGET} PRIVATE
ggwave
ggwave-common
${CMAKE_THREAD_LIBS_INIT}
)