|
|
# add the executable
|
add_executable(test_net_mod_socket test_net_mod_socket.cpp)
|
target_link_libraries(test_net_mod_socket PUBLIC shm_queue ${EXTRA_LIBS} )
|
|
add_executable(heart_beat heart_beat.cpp)
|
target_link_libraries(heart_beat PUBLIC shm_queue ${EXTRA_LIBS} )
|
|
|
target_include_directories(test_net_mod_socket PUBLIC
|
"${PROJECT_BINARY_DIR}"
|
${EXTRA_INCLUDES}
|
)
|
|
# add the install targets
|
install(TARGETS test_net_mod_socket DESTINATION bin)
|