ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
![]() | 1 | initial version |
The following patch to colcon-ros
should fix the problem: colcon-ros#23 . Please try it again after updating the Debian package python3-colcon-ros
to version 0.2.9-1.
![]() | 2 | No.2 Revision |
The following patch to colcon-ros
should fix the problem: colcon-ros#23 . Please try it again after updating the Debian package python3-colcon-ros
to version 0.2.9-1.
Update: With the above update the build works just fine for any existing message package, e.g. the common_interfaces repository.
In your case your test package uses plain CMake rather than ament_cmake
. While that should work the problem is likely related to that difference.
![]() | 3 | No.3 Revision |
The following patch to colcon-ros
should fix the problem: colcon-ros#23 . Please try it again after updating the Debian package python3-colcon-ros
to version 0.2.9-1.
Update:
Update:
With the above update the build works just fine for any existing message package, e.g. the common_interfaces repository.
In your case your test package uses plain CMake rather than ament_cmake
. While that should work the problem is likely related to that difference.
![]() | 4 | No.4 Revision |
The following patch to colcon-ros
should fix the problem: colcon-ros#23 . Please try it again after updating the Debian package python3-colcon-ros
to version 0.2.9-1.
Update:
With the above update the build works just fine for any existing message package, e.g. the common_interfaces repository.
In your case your test package uses plain CMake rather than ament_cmake
. While that should work the problem is likely related to that difference.
Update 2:
The above patch only affects the build type ament_cmake
but not plain cmake
. You can workaround the problem by extending the CMAKE_PREFIX_PATH
manually: export CMAKE_PREFIX_PATH=$AMENT_PREFIX_PATH:$CMAKE_PREFIX_PATH
. An upcoming patch release of colcon-ros should be able to address this.
![]() | 5 | No.5 Revision |
The following patch to colcon-ros
should fix the problem: colcon-ros#23 . Please try it again after updating the Debian package python3-colcon-ros
to version 0.2.9-1.
Update:
With the above update the build works just fine for any existing message package, e.g. the common_interfaces repository.
In your case your test package uses plain CMake rather than ament_cmake
. While that should work the problem is likely related to that difference.
Update 2:
The above patch only affects the build type ament_cmake
but not plain cmake
. You can workaround the problem by extending the CMAKE_PREFIX_PATH
manually: export CMAKE_PREFIX_PATH=$AMENT_PREFIX_PATH:$CMAKE_PREFIX_PATH
. An upcoming patch patch release of colcon-ros should be able to address this.