-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.xml
51 lines (44 loc) · 1.76 KB
/
package.xml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0"?>
<package>
<name>pure_pursuit</name>
<version>0.9.0</version>
<description>A pure pursuit path following algorithm.</description>
<author email="damjan.miklic@fer.hr">Damjan Miklic</author>
<maintainer email="damjan.miklic@fer.hr">Damjan Miklic</maintainer>
<license>MIT</license>
<buildtool_depend>catkin</buildtool_depend>
<build_depend>roscpp</build_depend>
<build_depend>std_msgs</build_depend>
<build_depend>geometry_msgs</build_depend>
<build_depend>nav_msgs</build_depend>
<build_depend>tf2</build_depend>
<build_depend>tf2_ros</build_depend>
<build_depend>orocos_kdl</build_depend>
<build_depend>ackermann_msgs</build_depend>
<!-- For dynamic reconfigure -->
<build_depend>rospy</build_depend>
<build_depend>dynamic_reconfigure</build_depend>
<!-- TODO: Figure out how to use tf2 DataConversions -->
<!--build_depend>tf2_kdl</build_depend-->
<!--build_depend>tf2_geometry_msgs</build_depend-->
<run_depend>roscpp</run_depend>
<run_depend>std_msgs</run_depend>
<run_depend>geometry_msgs</run_depend>
<run_depend>nav_msgs</run_depend>
<run_depend>tf2</run_depend>
<run_depend>tf2_ros</run_depend>
<run_depend>orocos_kdl</run_depend>
<run_depend>ackermann_msgs</run_depend>
<!-- For dynamic reconfigure -->
<run_depend>rospy</run_depend>
<run_depend>dynamic_reconfigure</run_depend>
<!-- TODO: Figure out how to use tf2 DataConversions -->
<!--run_depend>tf2_kdl</run_depend-->
<!--run_depend>tf2_geometry_msgs</run_depend-->
<!-- The export tag contains other, unspecified, tags -->
<export>
<!-- You can specify that this package is a metapackage here: -->
<!-- <metapackage/> -->
<!-- Other tools can request additional information be placed here -->
</export>
</package>