mirror of
https://github.com/Hizenberg469/Routing-Table-Manager.git
synced 2026-04-20 02:12:25 +03:00
15 lines
257 B
CMake
15 lines
257 B
CMake
set(SYNC_SRC
|
|
"sync.c")
|
|
set(SYNC_HEADER
|
|
"sync.h")
|
|
|
|
add_library( ${SM_NAME} STATIC
|
|
${SYNC_SRC}
|
|
${SYNC_HEADER})
|
|
|
|
target_include_directories( ${SM_NAME} PUBLIC
|
|
"./")
|
|
|
|
target_link_libraries( ${SM_NAME} PUBLIC
|
|
${ML_NAME}
|
|
${RT_NAME}) |