-
Notifications
You must be signed in to change notification settings - Fork 631
[kilted] Update deprecated call to ament_target_dependencies #3467
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
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Alejandro Hernandez Cordero <[email protected]>
Related PR MetroRobotsForks#1 which should fix the build |
Fixed ament_target_dependencies
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3467 +/- ##
==========================================
- Coverage 46.23% 0.00% -46.22%
==========================================
Files 718 94 -624
Lines 62677 11663 -51014
Branches 7583 1866 -5717
==========================================
- Hits 28975 0 -28975
+ Misses 33535 11663 -21872
+ Partials 167 0 -167 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be great if somebody could take the chance and cleanup cmake files 😉
collision_detector_bullet_plugin moveit_collision_detection_bullet | ||
moveit_planning_scene moveit_utils) | ||
collision_detector_bullet_plugin | ||
PUBLIC ${BULLET_LIBRARIES} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here (and probably in many other places too), the plugin should just depend on its base lib (moveit_collision_detection_bullet
). All other dependencies should be pulled in automatically in a transitive fashion.
As of the ROS 2 Kilted release
ament_target_dependencies
is deprecated.This PR updates the syntax. Caution should be used to ensure that the target branch is not used for other ROS 2 distros.
Note: This PR was generated by a bot script, but using the simple pattern matching of the
ros_glint
library. No LLMs were used.