Skip to content

Commit

Permalink
narrow down required boost dependencies (#160)
Browse files Browse the repository at this point in the history
Signed-off-by: Mikael Arguedas <mikael.arguedas@gmail.com>
  • Loading branch information
mikaelarguedas committed Aug 28, 2020
1 parent 44bf47d commit 87ad2ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0.2)
project(dynamic_reconfigure)

find_package(catkin REQUIRED COMPONENTS message_generation roscpp std_msgs)
find_package(Boost REQUIRED COMPONENTS system thread chrono)
find_package(Boost REQUIRED)

include_directories(include)
include_directories(SYSTEM ${catkin_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS})
Expand Down
5 changes: 4 additions & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
<build_depend>roscpp_serialization</build_depend>
<build_depend>rostest</build_depend>

<depend>boost</depend>
<build_export_depend>libboost-chrono-dev</build_export_depend>
<build_export_depend>libboost-thread-dev</build_export_depend>

<depend>libboost-dev</depend>
<depend>roscpp</depend>
<depend>std_msgs</depend>

Expand Down

0 comments on commit 87ad2ec

Please sign in to comment.