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

36
app/CMakeLists.txt Normal file
View File

@@ -0,0 +1,36 @@
set(CLIENT
"client.c")
set(SERVER
"server.c")
set(SHM_TABLE
"shm_ip.c")
add_executable( client
${CLIENT}
${SHM_TABLE})
add_executable( server
${SERVER}
${SHM_TABLE})
#add_executable( dummy_server
# "dummy_server.c"
# ${SHM_TABLE})
target_link_libraries( client PUBLIC
${DLL_NAME}
${ML_NAME}
${RT_NAME}
${SM_NAME})
target_link_libraries( server PUBLIC
${DLL_NAME}
${ML_NAME}
${RT_NAME}
${SM_NAME})
#target_link_libraries( dummy_server PUBLIC
# ${DLL_NAME}
# ${ML_NAME}
# ${RT_NAME}
# ${SM_NAME})