-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compatibility with ROS melodic #23
Comments
Sorry I don't have time for this now. The main issue here is moving from boost to std I think. Which is really a problem of moving from kinetic to melodic. Please once you have something working on melodic, make a pull request and share your improvements with the community. Cheers ! |
Hi Jimmy, thanks for the fast response. I did some changes and got it to compile on Ubuntu 18.04 with ROS melodic. As you said it was basically the transition from boost to std along with an adaptation in the nodelet API (same as here) I will check if the code works as it is supposed to and create a PR. |
Fixed on #27 |
Currently this package does not compile with ROS melodic on Ubuntu 18.04
The first issue was in CMakeLists.txt ${catkin_INCLUDE_DIR} shoud be ${catkin_INCLUDE_DIRS} with an S at the end.
Also the include folder from the package itselt has to be manually included.
eg.
include_directories(include ${catkin_INCLUDE_DIRS})
Then some nodes compile but it fails at urdf_renderer
Any idea on what has to change?
The text was updated successfully, but these errors were encountered: