ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
CMake uses a few keyword to identify libraries with special semantic: debug
, optimized
, and generic
.
The code was supposed to only detect those but it turns out the regex was incorrect and matches the library in your case (starting with debug
).
Please see the following PR which fixes the regex and allows you to build your package as expected: https://github.com/ament/ament_cmake/pull/148