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

15
Sync/CMakeLists.txt Normal file
View File

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