Skip to content

Commit

Permalink
Cmakelists: Fix install directories
Browse files Browse the repository at this point in the history
This fixes issues when using install space
  • Loading branch information
ovaag committed Nov 15, 2023
1 parent bb2ab24 commit 7288368
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,20 @@ install(
)

install(
DIRECTORY ${_ouster_ros_INCLUDE_DIRS}
DIRECTORY include/ouster_ros/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
)

install(
DIRECTORY ouster-sdk/ouster_client/include/ouster/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}/../ouster
)

install(
DIRECTORY ouster-sdk/ouster_client/include/optional-lite/nonstd/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}/../nonstd
)

install(
FILES
LICENSE
Expand Down

0 comments on commit 7288368

Please sign in to comment.