RTM Project

This commit is contained in:
2024-05-07 22:02:08 +05:30
commit f7d7a53ade
20 changed files with 2033 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
set( RT_SRC
"routing-table.c")
set( RT_HEADER
"routing-table.h")
add_library( ${RT_NAME} STATIC
${RT_SRC}
${RT_HEADER})
target_include_directories( ${RT_NAME} PUBLIC
"./"
)
target_link_libraries( ${RT_NAME} PUBLIC
${DLL_NAME})