mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-02-25 00:45:07 +08:00
15 lines
277 B
CMake
15 lines
277 B
CMake
add_executable(ggwave-gui main.cpp common.cpp)
|
|
|
|
target_include_directories(ggwave-gui PRIVATE
|
|
..
|
|
${SDL2_INCLUDE_DIRS}
|
|
)
|
|
|
|
target_link_libraries(ggwave-gui PRIVATE
|
|
ggwave
|
|
ggwave-common
|
|
ggwave-common-sdl2
|
|
imgui-sdl2
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
)
|