Skip to content

Commit db93576

Browse files
committed
Update tutorials
Name planning pipeline correctly Update tutorial Update motion planning API tutorial Apply suggestions from code review Address review comment
1 parent 06fcaf6 commit db93576

File tree

7 files changed

+1044
-0
lines changed

7 files changed

+1044
-0
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ add_subdirectory(doc/how_to_guides/parallel_planning)
6969
add_subdirectory(doc/how_to_guides/chomp_planner)
7070
add_subdirectory(doc/how_to_guides/persistent_scenes_and_states)
7171
add_subdirectory(doc/how_to_guides/pilz_industrial_motion_planner)
72+
add_subdirectory(doc/how_to_guides/pipeline_testbench)
7273
add_subdirectory(doc/how_to_guides/using_ompl_constrained_planning)
7374
add_subdirectory(doc/tutorials/pick_and_place_with_moveit_task_constructor)
7475
add_subdirectory(doc/tutorials/quickstart_in_rviz)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
add_executable(pipeline_testbench_example src/pipeline_testbench_main.cpp)
2+
target_include_directories(pipeline_testbench_example PRIVATE include)
3+
ament_target_dependencies(pipeline_testbench_example ${THIS_PACKAGE_INCLUDE_DEPENDS} Boost)
4+
5+
install(TARGETS pipeline_testbench_example
6+
DESTINATION lib/${PROJECT_NAME}
7+
)
8+
install(DIRECTORY launch
9+
DESTINATION share/${PROJECT_NAME}
10+
)
11+
install(DIRECTORY config
12+
DESTINATION share/${PROJECT_NAME}
13+
)

0 commit comments

Comments
 (0)