8000 fix missing boost dependencies by dirk-thomas · Pull Request #1895 · ros/ros_comm · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on May 31, 2025. It is now read-only.

fix missing boost dependencies #1895

Merged
merged 1 commit into from < 8000 /clipboard-copy>
Feb 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions clients/roscpp/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
<buildtool_depend version_gte="0.5.78">catkin</buildtool_depend>

<build_depend version_gte="0.3.17">cpp_common</build_depend>
<build_depend>libboost-chrono-dev</build_depend>
<build_depend>libboost-filesystem-dev</build_depend>
<build_depend>libboost-system-dev</build_depend>
<build_depend>message_generation</build_depend>
<build_depend>pkg-config</build_depend>
<build_depend>rosconsole</build_depend>
Expand All @@ -36,6 +39,8 @@
<build_depend>xmlrpcpp</build_depend>

<run_depend version_gte="0.3.17">cpp_common</run_depend>
<run_depend>libboost-chrono-dev</run_depend>
<run_depend>libboost-system-dev</run_depend>
<run_depend>message_runtime</run_depend>
<run_depend>rosconsole</run_depend>
<run_depend>roscpp_serialization</run_depend>
Expand Down
3 changes: 2 additions & 1 deletion utilities/message_filters/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@

<buildtool_depend version_gte="0.5.68">catkin</buildtool_depend>

<build_depend>boost</build_depend>
<build_depend>libboost-thread-dev</build_depend>
<build_depend>rosconsole</build_depend>
<build_depend>roscpp</build_depend>
<build_depend>rostest</build_depend>
<build_depend>rosunit</build_depend>

<run_depend>libboost-thread-dev</run_depend>
<run_depend>rosconsole</run_depend>
<run_depend>roscpp</run_depend>

Expand Down
0