Files
ggwave/examples/waver/CMakeLists.txt
2021-01-05 21:14:37 +02:00

18 lines
354 B
CMake

add_executable(waver main.cpp common.cpp interface.cpp interface-unix.cpp)
target_include_directories(waver PRIVATE
..
${SDL2_INCLUDE_DIRS}
)
target_link_libraries(waver PRIVATE
ggwave
ggwave-common
ggwave-common-sdl2
ggsock
imgui-sdl2
${CMAKE_THREAD_LIBS_INIT}
)
install(TARGETS waver RUNTIME DESTINATION bin)