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

16
Mac-List/CMakeLists.txt Normal file
View File

@@ -0,0 +1,16 @@
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})