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

[melodic] add missing pluginlib deps. #451

Merged
merged 1 commit into from
Feb 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions diff_drive_controller/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ find_package(catkin REQUIRED COMPONENTS
realtime_tools
tf
urdf
pluginlib
)

generate_dynamic_reconfigure_options(cfg/DiffDriveController.cfg)
Expand Down
1 change: 1 addition & 0 deletions diff_drive_controller/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<depend>realtime_tools</depend>
<depend>tf</depend>
<depend>urdf</depend>
<depend>pluginlib</depend>

<test_depend>controller_manager</test_depend>
<test_depend>rosgraph_msgs</test_depend>
Expand Down
1 change: 1 addition & 0 deletions effort_controllers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ find_package(catkin REQUIRED COMPONENTS
forward_command_controller
realtime_tools
urdf
pluginlib
)

include_directories(include ${Boost_INCLUDE_DIR} ${catkin_INCLUDE_DIRS})
Expand Down
1 change: 1 addition & 0 deletions effort_controllers/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<depend>realtime_tools</depend>
<depend>urdf</depend>
<depend>forward_command_controller</depend>
<depend>pluginlib</depend>

<export>
<controller_interface plugin="${prefix}/effort_controllers_plugins.xml"/>
Expand Down
3 changes: 2 additions & 1 deletion four_wheel_steering_controller/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ set(${PROJECT_NAME}_CATKIN_DEPS
four_wheel_steering_msgs
realtime_tools
tf
urdf_geometry_parser)
urdf_geometry_parser
pluginlib)

find_package(catkin REQUIRED COMPONENTS ${${PROJECT_NAME}_CATKIN_DEPS})

Expand Down
1 change: 1 addition & 0 deletions four_wheel_steering_controller/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<depend>realtime_tools</depend>
<depend>tf</depend>
<depend>urdf_geometry_parser</depend>
<depend>pluginlib</depend>

<test_depend>rosgraph_msgs</test_depend>
<test_depend>rostest</test_depend>
Expand Down
1 change: 1 addition & 0 deletions gripper_action_controller/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ find_package(catkin
trajectory_msgs
urdf
xacro
pluginlib
)

catkin_package(
Expand Down
1 change: 1 addition & 0 deletions gripper_action_controller/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<depend>trajectory_msgs</depend>
<depend>urdf</depend>
<depend>xacro</depend>
<depend>pluginlib</depend>

<export>
<controller_interface plugin="${prefix}/ros_control_plugins.xml"/>
Expand Down
1 change: 1 addition & 0 deletions joint_trajectory_controller/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ find_package(catkin
realtime_tools
control_msgs
trajectory_msgs
pluginlib
)

# Declare catkin package
Expand Down
1 change: 1 addition & 0 deletions joint_trajectory_controller/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<depend>roscpp</depend>
<depend>trajectory_msgs</depend>
<depend>urdf</depend>
<depend>pluginlib</depend>

<test_depend>rostest</test_depend>
<test_depend>controller_manager</test_depend>
Expand Down
2 changes: 1 addition & 1 deletion position_controllers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8.3)
project(position_controllers)

# Load catkin and all dependencies required for this package
find_package(catkin REQUIRED COMPONENTS controller_interface forward_command_controller)
find_package(catkin REQUIRED COMPONENTS controller_interface forward_command_controller pluginlib)

# Declare catkin project
catkin_package(
Expand Down
1 change: 1 addition & 0 deletions position_controllers/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<buildtool_depend>catkin</buildtool_depend>
<depend>controller_interface</depend>
<depend>forward_command_controller</depend>
<depend>pluginlib</depend>

<export>
<controller_interface plugin="${prefix}/position_controllers_plugins.xml"/>
Expand Down
1 change: 1 addition & 0 deletions velocity_controllers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ find_package(catkin REQUIRED COMPONENTS
forward_command_controller
realtime_tools
urdf
pluginlib
)

# Declare catkin package
Expand Down
1 change: 1 addition & 0 deletions velocity_controllers/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<depend>forward_command_controller</depend>
<depend>realtime_tools</depend>
<depend>urdf</depend>
<depend>pluginlib</depend>

<export>
<controller_interface plugin="${prefix}/velocity_controllers_plugins.xml"/>
Expand Down