-
Notifications
You must be signed in to change notification settings - Fork 11
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
Building issue #5
Comments
I'm having the same problem here. |
I sort of doubt that one year later you're still worried about this... But in case anyone else happens across this problem, here's a short explanation and fix. As you say, the header file doesn't exist. That's because in the CMakeLists file, we have the following lines:
This tells us that WorkSpace.h is actually a header file containing a message definition. So what is happening here is that messages are not getting built before the rest of the project, in particular before discretization.cpp and utility.cpp. To fix this, just add the following lines underneath the add_library(...):
I'm having other compilation errors, but this fixes the one mentioned here. |
@jbeck28 For me it fixed the compilation error and I was able to build it (kinetic-devel branch) completly now without any more changes. |
Ubuntu 20.04 - ROS Noetic I applied the above fix to both the
Needed to add... #include <boost/format.hpp> ...to reuleaux_moveit/map_generation/include/map_generation/utility.h |
Ubuntu 20.04 - ROS Noetic The
Which is strange as the message type clearly has an attempts field. Whereas the
Moving over to working in this fork should anyone else find themselves here in the future. |
Hi,
I'm trying to build this on u18.04 melodic. Getting this issue:
It does not seem to be related to melodic however. Any advice? The file just isn't there
The text was updated successfully, but these errors were encountered: