mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-03-18 00:45:59 +08:00
14 lines
228 B
CMake
14 lines
228 B
CMake
set(TARGET ggwave-to-file)
|
|
|
|
add_executable(${TARGET} main.cpp)
|
|
|
|
target_include_directories(${TARGET} PRIVATE
|
|
..
|
|
)
|
|
|
|
target_link_libraries(${TARGET} PRIVATE
|
|
ggwave
|
|
ggwave-common
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
)
|