-
Notifications
You must be signed in to change notification settings - Fork 958
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
[occupancy_map_monitor] add dependencies #1901
[occupancy_map_monitor] add dependencies #1901
Conversation
75b45d1
to
ec302c5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm curious about which kind of linking errors you've got. Usually, all those dependencies should be transitively pulled in.
@@ -10,7 +10,7 @@ if(NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE) | |||
set(CMAKE_BUILD_TYPE Release) | |||
endif() | |||
|
|||
find_package(Boost REQUIRED thread) | |||
find_package(Boost REQUIRED thread function) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no specific lib required for boost::function
, it's just part of the headers.
This change makes Travis failing.
DEPENDS | ||
EIGEN3 | ||
OCTOMAP | ||
Boost |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no need to explicitly link downstream projects against boost.
explicit dependencies to tf2_ros, geometric_shapes and boost are added
ec302c5
to
f38cadf
Compare
The error message was:
I noticed it when I tried to compile moveit from source on Debian Buster. tf2 was from the repo (libtf2-ros-dev 0.6.5-3). |
Description
explicit dependencies to tf2_ros, geometric_shapes and boost are added.
I noticed some linking errors while compiling from source. Applies to master as well
Checklist