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
Right now, RWS is using websocketpp, asio and nlohmann/json and these 3 libraries will be fetched by CMake during configuration step. Is there a reason they need to be built like this? Can the libraries installable via apt work?
Then the rosdep tool can be used to install the correct packages from apt. Note that the rosdep tool works for other linux distributions than just Ubuntu.
Maybe you can also change the CMakeLists.txt to attempt to find_package and if it fails to find a package then fetch and build? I also think that automatic fetching and building should be an option that is disabled by default.
The text was updated successfully, but these errors were encountered:
rosdep is not working on Mac, also asio and websocketpp are a bit outdated on Ubuntu 20.04, that was the reasons, but I agree that automatic fetching should be optional.
Right now, RWS is using websocketpp, asio and nlohmann/json and these 3 libraries will be fetched by CMake during configuration step. Is there a reason they need to be built like this? Can the libraries installable via
apt
work?You can add the following to the
package.xml
fileThen the
rosdep
tool can be used to install the correct packages fromapt
. Note that the rosdep tool works for other linux distributions than just Ubuntu.Maybe you can also change the CMakeLists.txt to attempt to
find_package
and if it fails to find a package then fetch and build? I also think that automatic fetching and building should be an option that is disabled by default.The text was updated successfully, but these errors were encountered: