Skip to content

Commit

Permalink
Fix include install destination (#2008)
Browse files Browse the repository at this point in the history
Co-authored-by: Henning Kayser <[email protected]>
Co-authored-by: Tyler Weaver <[email protected]>
  • Loading branch information
3 people authored Mar 15, 2023
1 parent a27bd6f commit 2ba82bb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion moveit_planners/ompl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ install(TARGETS moveit_ompl_interface moveit_ompl_planner_plugin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
RUNTIME DESTINATION bin
INCLUDES DESTINATION include
INCLUDES DESTINATION include/moveit_planners_ompl
)
ament_export_targets(${PROJECT_NAME}Targets HAS_LIBRARY_TARGET)
ament_export_dependencies(moveit_core ompl)
Expand Down
2 changes: 1 addition & 1 deletion moveit_planners/ompl/ompl_interface/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ target_link_libraries(moveit_ompl_planner_plugin moveit_ompl_interface)
install(TARGETS moveit_generate_state_database
RUNTIME DESTINATION lib/${PROJECT_NAME}
)
install(DIRECTORY include/ DESTINATION include)
install(DIRECTORY include/ DESTINATION include/moveit_planners)

if(BUILD_TESTING)
find_package(ament_cmake_gtest REQUIRED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ install(
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
RUNTIME DESTINATION bin
INCLUDES DESTINATION include
INCLUDES DESTINATION include/moveit_resources_prbt_ikfast_manipulator_plugin
)

ament_export_targets(${PROJECT_NAME}Targets HAS_LIBRARY_TARGET)
Expand Down
2 changes: 1 addition & 1 deletion moveit_py/src/moveit/moveit_py_utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ install(
ARCHIVE DESTINATION lib
RUNTIME DESTINATION bin)

install(DIRECTORY include/ DESTINATION include)
install(DIRECTORY include/ DESTINATION include/moveit_py)

0 comments on commit 2ba82bb

Please sign in to comment.