Files
Routing-Table-Manager/Sync/CMakeLists.txt
2024-05-07 22:02:08 +05:30

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})