mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-02-07 17:54:39 +08:00
18 lines
248 B
CMake
18 lines
248 B
CMake
# core
|
|
|
|
add_library(ggwave ${GGWAVE_LIBRARY_TYPE}
|
|
ggwave.cpp
|
|
)
|
|
|
|
target_include_directories(ggwave PUBLIC
|
|
.
|
|
../include
|
|
)
|
|
|
|
target_link_libraries(ggwave PUBLIC
|
|
)
|
|
|
|
target_link_libraries(ggwave PRIVATE
|
|
${CMAKE_DL_LIBS}
|
|
)
|