-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.xml
More file actions
32 lines (25 loc) · 1.14 KB
/
package.xml
File metadata and controls
32 lines (25 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0"?>
<package format="2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://download.ros.org/schema/package_format2.xsd">
<name>gazebo_custom_sensor_preloader</name>
<version>1.1.0</version>
<description>Gazebo plugin that allows writing custom Gazebo sensors.</description>
<license>BSD</license>
<url>https://github.com/peci1/gazebo_custom_sensor_preloader</url>
<maintainer email="peckama2@fel.cvut.cz">Martin Pecka</maintainer>
<author email="peckama2@fel.cvut.cz">Martin Pecka</author>
<buildtool_depend>catkin</buildtool_depend>
<depend>gazebo_dev</depend>
<depend>pluginlib</depend>
<build_depend>boost</build_depend>
<exec_depend>gazebo_ros</exec_depend>
<exec_depend>rosbash</exec_depend>
<!--
In your own custom sensor implementations, you'll also have to add
<exec_depend>gazebo_custom_sensor_preloader</exec_depend>
-->
<export>
<gazebo_custom_sensor_preloader plugin="${prefix}/example_custom_sensor.xml" />
<gazebo_ros plugin_path="$(dirname $(catkin_find --first-only libgazebo_custom_sensor_preloader.so))" />
</export>
</package>