mirror of
https://github.com/Hizenberg469/Routing-Table-Manager.git
synced 2026-04-19 18:02:23 +03:00
16 lines
284 B
CMake
16 lines
284 B
CMake
set(MAC_LIST_SRC
|
|
"mac-list.c")
|
|
|
|
set(MAC_LIST_HEADER
|
|
"mac-list.h")
|
|
|
|
add_library( ${ML_NAME} STATIC
|
|
${MAC_LIST_SRC}
|
|
${MAC_LIST_HEADER})
|
|
|
|
target_include_directories( ${ML_NAME} PUBLIC
|
|
"./")
|
|
|
|
target_link_libraries( ${ML_NAME} PUBLIC
|
|
${DLL_NAME}
|
|
${RT_NAME}) |