diff options
Diffstat (limited to 'apps/producers')
-rwxr-xr-x | apps/producers/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/producers/CMakeLists.txt b/apps/producers/CMakeLists.txt index 2d97eb2e..10353057 100755 --- a/apps/producers/CMakeLists.txt +++ b/apps/producers/CMakeLists.txt @@ -25,13 +25,13 @@ set(PRODUCER_PING_SOURCE_FILES add_executable(producer-test ${PRODUCER_SOURCE_FILES}) add_executable(producer-hello-world ${PRODUCER_HELLO_WORLD_SOURCE_FILES}) -add_executable(icnet-ping-server ${PRODUCER_PING_SOURCE_FILES}) +add_executable(iping-server ${PRODUCER_PING_SOURCE_FILES}) target_link_libraries(producer-test icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES}) target_link_libraries(producer-hello-world icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES}) -target_link_libraries(icnet-ping-server icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES}) +target_link_libraries(iping-server icnet ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES}) install(TARGETS producer-test DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library) install(TARGETS producer-hello-world DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library) -install(TARGETS icnet-ping-server DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library) +install(TARGETS iping-server DESTINATION ${CMAKE_INSTALL_PREFIX}/bin COMPONENT library) |