ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You are using plugins
as the package name in the .cpp and plugin_description references to MissionPanel and not ui
which is an issue.
In the build section of your CMakeLists, you will need:
# Must be rviz_common to be detected by plugin_lib
pluginlib_export_plugin_description_file(rviz_common plugins_description.xml)
Do you have that line?