You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue was solved when installing apt install ros-humble-asio-cmake-module
Here is what I tried to do
The cmake file io_context-extras.cmake which was not there in an older artifact: ros-humble-io-context 1.2.0-2jammy.20230919.223322
is available in the current artifact ros-humble-io-context 1.2.0-2jammy.20240729.001626
Which has a dependency to asio_cmake_module find_package(asio_cmake_module REQUIRED)
which makes ros-humble-asio-cmake-module a dependent package of ros-humble-io-context
However this is not correctly reflected inside the Debian Package of ros-humble-io-context
In
io_context
theasio_cmake_module
is listed asbuildtool_depend
:transport_drivers/io_context/package.xml
Line 14 in 9fff59f
So probably the buildfarm doesn't add this as dependency so it's not installed on a users system which only has
io_context
as dependency.However it should be
find_package
d as seen here:transport_drivers/io_context/io_context-extras.cmake
Line 17 in 9fff59f
I don't think it's required in
io_context-extras.cmake
, what do you think?The text was updated successfully, but these errors were encountered: