mirror of
https://github.com/Hizenberg469/Routing-Table-Manager.git
synced 2026-04-19 18:02:23 +03:00
17 lines
259 B
CMake
17 lines
259 B
CMake
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}) |