For users of abb_libegm and abb_librws: please be aware that we’ve merged ros-industrial/abb_libegm#63 today.
This PR converts abb_libegm (and eventually abb_librws) into a plain CMake package. These packages used to be Catkin packages, but never really made use of any of Catkin’s functionality, nor do they contain any ROS nodes or other ROS infrastructure.
The main rationale for converting these packages is to be able to use them with ROS 1, ROS 2 as well as on non-ROS systems and on OS that support CMake, but not ROS (with all its dependencies). In addition, Windows (10) support is targetted.
The documentation of both these packages will be updated, but just to summarise:
- plain CMake packages can be built in ROS Catkin workspaces, but only
catkin_make_isolatedor catkin_tools can be used in that case. Regularcatkin_makecannot build workspaces with non-Catkin packages in it. If you wish to keep usingcatkin_make, buildabb_libegmandabb_librwsin an underlay first (usingcatkin_toolsorcatkin_make_isolated), then extend that underlay with your regular workspace. abb_libegmandabb_librwsmight not work any more infind_package(catkin .. COMPONENTS ..)calls. Instead,find_package(abb_libegm REQUIRED)separately, and then use the appropriate_LIBRARIESand_INCLUDE_DIRSvariables or make use of theabb_libegm::abb_libegmandabb_librws::abb_librwstargets directly.
ros-industrial/abb_libegm#63 introduces changes to the build system only. No functional changes are included. Ubuntu Xenial and Ubuntu Bionic are still supported. Future versions of these packages might require newer versions of CMake, but this will depend on availability of specific functionality.
If you find something doesn’t work as it did, or should, please post an issue on the issue tracker and we’ll try to help you.