mirror of
https://github.com/Hizenberg469/Routing-Table-Manager.git
synced 2026-04-19 18:02:23 +03:00
RTM Project
This commit is contained in:
36
app/CMakeLists.txt
Normal file
36
app/CMakeLists.txt
Normal 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})
|
||||
Reference in New Issue
Block a user