Files
ggwave/examples/ggwave-from-file/CMakeLists.txt

16 lines
282 B
CMake

set(TARGET ggwave-from-file)
add_executable(${TARGET} main.cpp)
target_include_directories(${TARGET} PRIVATE
..
)
target_link_libraries(${TARGET} PRIVATE
ggwave
ggwave-common
${CMAKE_THREAD_LIBS_INIT}
)
install(TARGETS ${TARGET} RUNTIME DESTINATION bin)