mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-03-18 00:45:59 +08:00
18 lines
354 B
CMake
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)
|