Skip to content

Commit

Permalink
Fix executable paths
Browse files Browse the repository at this point in the history
  • Loading branch information
scosar committed Jun 3, 2019
1 parent 2150074 commit b15195d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ouster_ros/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,13 @@ install(FILES os1.launch
)

install(TARGETS os1_node
DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

install(TARGETS os1_cloud_node
DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

0 comments on commit b15195d

Please sign in to comment.