Skip to content

Commit c02561d

Browse files
committed
Fix dependencies
1 parent 8f9048b commit c02561d

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

ed_sensor_integration/CMakeLists.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,17 @@ project(ed_sensor_integration)
44
add_compile_options(-Wall -Werror=all)
55
add_compile_options(-Wextra -Werror=extra)
66

7+
find_package(OpenCV REQUIRED)
8+
find_package(PCL REQUIRED COMPONENTS common kdtree)
79
find_package(catkin REQUIRED COMPONENTS
10+
code_profiler
811
ed
912
ed_sensor_integration_msgs
1013
geolib2
1114
geometry_msgs
1215
image_geometry
16+
rgbd
17+
roscpp
1318
sensor_msgs
1419
tf2_ros
1520
tue_config
@@ -24,8 +29,8 @@ find_package(catkin REQUIRED COMPONENTS
2429
catkin_package(
2530
INCLUDE_DIRS include
2631
LIBRARIES ed_kinect
27-
# DEPENDS
28-
CATKIN_DEPENDS ed ed_sensor_integration_msgs tue_config
32+
CATKIN_DEPENDS code_profiler ed ed_sensor_integration_msgs geolib2 image_geometry rgbd rgbd_image_buffer roscpp tue_config visualization_msgs
33+
DEPENDS OpenCV PCL
2934
)
3035

3136
# ------------------------------------------------------------------------------------------------
@@ -48,8 +53,6 @@ add_library(ed_association
4853
)
4954

5055
add_library(ed_kinect
51-
src/kinect/image_buffer.cpp
52-
include/ed/kinect/image_buffer.h
5356
src/kinect/fitter.cpp
5457
include/ed/kinect/fitter.h
5558
src/kinect/beam_model.cpp

ed_sensor_integration/package.xml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,28 @@
1313

1414
<buildtool_depend>catkin</buildtool_depend>
1515

16+
<depend>code_profiler</depend>
1617
<depend>ed</depend>
1718
<depend>ed_sensor_integration_msgs</depend>
1819
<depend>geolib2</depend>
19-
<depend>geometry_msgs</depend>
2020
<depend>image_geometry</depend>
21-
<depend>sensor_msgs</depend>
22-
<depend>tf2_ros</depend>
21+
<depend>libopencv-dev</depend>
22+
<depend>libpcl-common</depend>
23+
<depend>libpcl-kdtree</depend>
24+
<depend>rgbd</depend>
25+
<depend>roscpp</depend>
2326
<depend>tue_config</depend>
24-
<depend>tue_filesystem</depend>
2527
<depend>visualization_msgs</depend>
2628

29+
<build_depend>geometry_msgs</build_depend>
30+
<exec_depend>geometry_msgs</exec_depend>
31+
<build_depend>sensor_msgs</build_depend>
32+
<exec_depend>sensor_msgs</exec_depend>
33+
<build_depend>tf2_ros</build_depend>
34+
<exec_depend>tf2_ros</exec_depend>
35+
<build_depend>tue_filesystem</build_depend>
36+
<exec_depend>tue_filesystem</exec_depend>
37+
2738
<export>
2839
<ed plugin="${prefix}/plugins.xml" />
2940
<rosdoc config="rosdoc.yaml" />

0 commit comments

Comments
 (0)