Merge pull request #11 from eboskma/master

Install executable into ROS
This commit is contained in:
livox
2020-02-09 22:41:14 +08:00
committed by GitHub

View File

@@ -199,6 +199,17 @@ target_link_libraries(${PROJECT_NAME}_node
${APR_LIBRARIES} ${APR_LIBRARIES}
) )
#---------------------------------------------------------------------------------------
# Install
#---------------------------------------------------------------------------------------
install(TARGETS ${PROJECT_NAME}_node
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
#--------------------------------------------------------------------------------------- #---------------------------------------------------------------------------------------
# end of CMakeList.txt # end of CMakeList.txt
#--------------------------------------------------------------------------------------- #---------------------------------------------------------------------------------------