mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-02-07 01:11:22 +08:00
14 lines
251 B
CMake
14 lines
251 B
CMake
add_executable(ggwave-cli main.cpp)
|
|
|
|
target_include_directories(ggwave-cli PRIVATE
|
|
..
|
|
${SDL2_INCLUDE_DIRS}
|
|
)
|
|
|
|
target_link_libraries(ggwave-cli PRIVATE
|
|
ggwave
|
|
ggwave-common
|
|
ggwave-common-sdl2
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
)
|