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