Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Parallel planning with moveit_cpp / path quality improvement guide #493

Closed
wants to merge 15 commits into from
Closed
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ add_subdirectory(doc/examples/planning_scene_ros_api)
add_subdirectory(doc/examples/planning_scene)
add_subdirectory(doc/examples/realtime_servo)
add_subdirectory(doc/how_to_guides/using_ompl_constrained_planning)
add_subdirectory(doc/how_to_guides/create_better_paths)
add_subdirectory(doc/examples/robot_model_and_robot_state)
add_subdirectory(doc/tutorials/pick_and_place_with_moveit_task_constructor)
add_subdirectory(doc/tutorials/quickstart_in_rviz)
Expand Down
13 changes: 13 additions & 0 deletions doc/how_to_guides/create_better_paths/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
add_executable(better_paths_demo src/better_paths_main.cpp)
target_include_directories(better_paths_demo PUBLIC include)
ament_target_dependencies(better_paths_demo ${THIS_PACKAGE_INCLUDE_DEPENDS} Boost)

install(TARGETS better_paths_demo
DESTINATION lib/${PROJECT_NAME}
)
install(DIRECTORY launch
DESTINATION share/${PROJECT_NAME}
)
install(DIRECTORY config
DESTINATION share/${PROJECT_NAME}
)
Loading