mirror of
https://github.com/Hizenberg469/Routing-Table-Manager.git
synced 2026-04-19 18:02:23 +03:00
36 lines
607 B
CMake
36 lines
607 B
CMake
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}) |