Skip to content

Commit

Permalink
separate into two examples: add basic planners ex
Browse files Browse the repository at this point in the history
  • Loading branch information
kovacsge11 committed Oct 20, 2023
1 parent 93c619e commit 5852eff
Show file tree
Hide file tree
Showing 3 changed files with 394 additions and 3 deletions.
14 changes: 11 additions & 3 deletions kuka_driver_examples/eci_demo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,23 @@ find_package(moveit_visual_tools REQUIRED)
find_package(rviz_visual_tools REQUIRED)
find_package(moveit_msgs REQUIRED)

add_executable(moveit_basic_plan src/MoveitBasicPlan.cpp)
ament_target_dependencies(moveit_basic_plan
add_executable(moveit_basic_planners_example src/MoveitBasicPlannersExample.cpp)
ament_target_dependencies(moveit_basic_planners_example
moveit_ros_planning_interface
rclcpp
rviz_visual_tools
moveit_visual_tools
)

install(TARGETS moveit_basic_plan
add_executable(moveit_palletizing_example src/MoveitPalletizingExample.cpp)
ament_target_dependencies(moveit_palletizing_example
moveit_ros_planning_interface
rclcpp
rviz_visual_tools
moveit_visual_tools
)

install(TARGETS moveit_basic_planners_example moveit_palletizing_example
EXPORT export_${PROJECT_NAME}
DESTINATION lib/${PROJECT_NAME}
)
Expand Down
Loading

0 comments on commit 5852eff

Please sign in to comment.