Skip to content

Commit 8899b6e

Browse files
committed
Merge remote-tracking branch 'origin/melodic' into noetic
2 parents ea65f29 + b4e17b4 commit 8899b6e

File tree

5 files changed

+29
-14
lines changed

5 files changed

+29
-14
lines changed

range_sensor_layer/CMakeLists.txt

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,32 @@ project(range_sensor_layer)
33
set_directory_properties(PROPERTIES COMPILE_OPTIONS "-Wall;-Werror")
44

55
find_package(catkin REQUIRED COMPONENTS
6-
angles
7-
costmap_2d
8-
dynamic_reconfigure
9-
geometry_msgs
10-
pluginlib
11-
roscpp
12-
sensor_msgs
13-
tf2_geometry_msgs
6+
angles
7+
costmap_2d
8+
dynamic_reconfigure
9+
geometry_msgs
10+
pluginlib
11+
roscpp
12+
rospy
13+
sensor_msgs
14+
tf2_geometry_msgs
1415
)
1516

1617
generate_dynamic_reconfigure_options(cfg/RangeSensorLayer.cfg)
1718

1819
catkin_package(
19-
CATKIN_DEPENDS angles costmap_2d dynamic_reconfigure geometry_msgs pluginlib roscpp sensor_msgs tf2_geometry_msgs
20+
CATKIN_DEPENDS
21+
angles
22+
costmap_2d
23+
dynamic_reconfigure
24+
geometry_msgs
25+
pluginlib
26+
roscpp
27+
rospy
28+
sensor_msgs
29+
tf2_geometry_msgs
2030
INCLUDE_DIRS include
21-
LIBRARIES range_sensor_layer
31+
LIBRARIES ${PROJECT_NAME}
2232
)
2333

2434
include_directories(include ${catkin_INCLUDE_DIRS})
@@ -33,7 +43,7 @@ if(CATKIN_ENABLE_TESTING)
3343
roslint_add_test()
3444
endif()
3545

36-
install(TARGETS range_sensor_layer
46+
install(TARGETS ${PROJECT_NAME}
3747
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
3848
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
3949
RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION}
@@ -46,4 +56,6 @@ install(FILES costmap_plugins.xml
4656
install(DIRECTORY include/${PROJECT_NAME}/
4757
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
4858
)
49-
catkin_install_python(PROGRAMS scripts/send_message.py DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
59+
catkin_install_python(PROGRAMS scripts/send_message.py
60+
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
61+
)

range_sensor_layer/include/range_sensor_layer/range_sensor_layer.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
#include <range_sensor_layer/RangeSensorLayerConfig.h>
99
#include <dynamic_reconfigure/server.h>
1010
#include <list>
11+
#include <map>
1112
#include <string>
13+
#include <utility>
1214
#include <vector>
1315
#include <tf2_geometry_msgs/tf2_geometry_msgs.h>
1416

range_sensor_layer/src/range_sensor_layer.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
#include <algorithm>
88
#include <list>
99
#include <limits>
10+
#include <map>
1011
#include <string>
12+
#include <utility>
1113

1214
PLUGINLIB_EXPORT_CLASS(range_sensor_layer::RangeSensorLayer, costmap_2d::Layer)
1315

social_navigation_layers/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ install(TARGETS social_layers
5555

5656
install(
5757
DIRECTORY include/${PROJECT_NAME}/
58-
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
58+
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
5959
)

social_navigation_layers/costmap_plugins.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@
66
<description>Uses people information to change the costmap</description>
77
</class>
88
</library>
9-

0 commit comments

Comments
 (0)