ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Making a master CMakeLists.txt

asked 2017-11-08 00:48:41 -0500

KenYN gravatar image

We have a huge 107 package ROS project, and due to various issues regarding multi-platform and versions and build machine configurations, we have lots of OpenCV version issues. Futhermore, there are lots of boilerplate code, such as setting up CUDA, that get repeated in many files.

So, is there an easy way to place a CMakeLists.txt in, say, the root directory and have it automatically included?

Note, this solution from StackOverflow could work, but can I avoid having to edit 107 CMakeLists.txts, including making sure I get the right number of ../s, since we have a multi-level build tree?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2017-11-08 03:03:43 -0500

gvdhoorn gravatar image

updated 2017-11-08 03:18:56 -0500

You are probably already aware, but anything you do will most likely make your packages harder to reuse outside your project as you are adding a dependency on an external file that is then hard-/en-coding certain assumptions of your build environment.

Having said that, two options I can come up with:

  1. use the Catkin CFG_EXTRAS infrastructure. From catkin documentation - package format 2 - CMake files:

    Sometimes your package needs to install CMake files for use by other packages. For that to work, your catkin_package() command must include a CFG_EXTRAS parameter, where you list the CMake files you want to export:

    catkin_package(CFG_EXTRAS your_macros.cmake your_modules.cmake)
    

    When another package uses find_package() on this package, the listed CMake files are automatically included.

    I don't know whether it is possible in your case, but you could see whether placing such a file in a low-level dependency that all / a large part of your packages already find_package(..) would work. The CFG_EXTRAS CMake file can do just about anything a regular CMake file does, but you can't really control ordering of inclusion this way, which may be problematic.

    For more info, see also the catkin extracted API documentation - catkin_package(..).

  2. not recommended (at all): unlink the catkins_ws/src/CMakeLists.txt that is there (as it's really a symlink), then copy the one from /opt/ros/$rosdistro/share/catkin/cmake/toplevel.cmake to catkin_ws/src/CMakeLists.txt. Now this is a regular file and you could edit it (do not edit the file in /opt/ros). This is the top-level file responsible for organising the build of the entire workspace (at least with catkin_make), so should perhaps allow you to do some early setup/configuration work.

    Note: this file is typically managed by Catkin itself, so there will probably be situations where you will lose your changes (because Catkin overwrites it for some reason). I'm not sure how often that would be though.

And again: relying on a single, central CMakeLists.txt will significantly increase coupling between your packages (to the point where they can't be built without the shared file anymore). That would not seem to align well with the distributed (federated) development style that ROS promotes, but that may be acceptable in your situation.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2017-11-08 00:48:41 -0500

Seen: 730 times

Last updated: Nov 08 '17