-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.xml
37 lines (24 loc) · 1.09 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
<?xml version="1.0"?>
<package format="3">
<name>serial_parser</name>
<version>0.1.0</version>
<description>A simple library to help parse serial data automatically.</description>
<maintainer email="[email protected]">Shrijit Singh</maintainer>
<license>TODO</license>
<url type="repository">http://wiki.ros.org/serial_parser</url>
<author email="[email protected]">Shrijit Singh</author>
<!-- ROS 1 -->
<buildtool_depend condition="$ROS_VERSION == 1">catkin</buildtool_depend>
<build_depend condition="$ROS_VERSION == 1">roscpp</build_depend>
<exec_depend condition="$ROS_VERSION == 1">roscpp</exec_depend>
<!-- Common Dependency -->
<depend>serial</depend>
<!-- ROS 2 -->
<buildtool_depend condition="$ROS_VERSION == 2">ament_cmake</buildtool_depend>
<build_depend condition="$ROS_VERSION == 2">rclcpp</build_depend>
<exec_depend condition="$ROS_VERSION == 2">rclcpp</exec_depend>
<export>
<build_type condition="$ROS_VERSION == 1">catkin</build_type>
<build_type condition="$ROS_VERSION == 2">ament_cmake</build_type>
</export>
</package>