Using both a group dependency and hard/explicit dependencies allows this to work fine with binaries (with bloom) and also allows us to include any future launch frontend (or any user's custom frontend) in source builds. This is similar to how rcl depends on both the rcl_logging_packages group and the default logging implementation explicitly.
Part of https://github.com/ros2/launch_ros/issues/255
As suggested/discussed under https://github.com/ros2/launch/pull/516#issuecomment-880342455, this declares a group dependency for the launch frontends and declares explicit dependencies on
launch_xml
andlaunch_yaml
forlaunch_testing
.Using both a group dependency and hard/explicit dependencies allows this to work fine with binaries (with bloom) and also allows us to include any future launch frontend (or any user's custom frontend) in source builds. This is similar to how
rcl
depends on both thercl_logging_packages
group and the default logging implementation explicitly.Signed-off-by: Christophe Bedard bedard.christophe@gmail.com