mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-02-24 16:16:10 +08:00
16 lines
321 B
CMake
16 lines
321 B
CMake
add_executable(ggwave-gui main.cpp common.cpp interface.cpp interface-unix.cpp)
|
|
|
|
target_include_directories(ggwave-gui PRIVATE
|
|
..
|
|
${SDL2_INCLUDE_DIRS}
|
|
)
|
|
|
|
target_link_libraries(ggwave-gui PRIVATE
|
|
ggwave
|
|
ggwave-common
|
|
ggwave-common-sdl2
|
|
ggsock
|
|
imgui-sdl2
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
)
|