wangzhengquan
2020-12-30 67b69daa801365481c04ca35d2984b0a056df058
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 
 
# 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)