File tree Expand file tree Collapse file tree 5 files changed +29
-14
lines changed
include/range_sensor_layer Expand file tree Collapse file tree 5 files changed +29
-14
lines changed Original file line number Diff line number Diff line change @@ -3,22 +3,32 @@ project(range_sensor_layer)
33set_directory_properties (PROPERTIES COMPILE_OPTIONS "-Wall;-Werror" )
44
55find_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
1617generate_dynamic_reconfigure_options(cfg/RangeSensorLayer.cfg)
1718
1819catkin_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
2434include_directories (include ${catkin_INCLUDE_DIRS} )
@@ -33,7 +43,7 @@ if(CATKIN_ENABLE_TESTING)
3343 roslint_add_test()
3444endif ()
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
4656install (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+ )
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 77#include < algorithm>
88#include < list>
99#include < limits>
10+ #include < map>
1011#include < string>
12+ #include < utility>
1113
1214PLUGINLIB_EXPORT_CLASS (range_sensor_layer::RangeSensorLayer, costmap_2d::Layer)
1315
Original file line number Diff line number Diff line change @@ -55,5 +55,5 @@ install(TARGETS social_layers
5555
5656install (
5757 DIRECTORY include /${PROJECT_NAME} /
58- DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
58+ DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
5959)
Original file line number Diff line number Diff line change 66 <description >Uses people information to change the costmap</description >
77 </class >
88</library >
9-
You can’t perform that action at this time.
0 commit comments