-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.xml
64 lines (55 loc) · 2.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>mvsim</name>
<description>A lightweight multivehicle simulation framework.</description>
<!-- All version numbers in CMake scripts are taken from this line: -->
<version>0.11.2</version>
<maintainer email="[email protected]">Jose-Luis Blanco-Claraco</maintainer>
<license>BSD</license>
<url type="website">https://wiki.ros.org/mvsim</url>
<!-- COMMON DEPS -->
<build_depend>ros_environment</build_depend>
<!-- BUILD TOOLS -->
<buildtool_depend>cmake</buildtool_depend>
<buildtool_depend condition="$ROS_VERSION == 1">catkin</buildtool_depend>
<buildtool_depend condition="$ROS_VERSION == 2">ament_cmake_gtest</buildtool_depend>
<buildtool_depend condition="$ROS_VERSION == 2">ament_cmake_gmock</buildtool_depend>
<buildtool_depend condition="$ROS_VERSION == 2">ament_cmake</buildtool_depend>
<!-- COMMON DEPS for all ROS versions -->
<depend>boost</depend>
<depend>libzmq3-dev</depend>
<depend>mrpt_libgui</depend>
<depend>mrpt_libmaps</depend>
<depend>mrpt_libposes</depend> <!-- for mrpt::tfest -->
<depend>mrpt_libros_bridge</depend>
<depend>mrpt_libtclap</depend>
<depend>nav_msgs</depend>
<depend>protobuf-dev</depend>
<depend>pybind11-dev</depend>
<depend>python3-pip</depend>
<depend>python3-protobuf</depend>
<depend>python3-venv</depend>
<depend>sensor_msgs</depend>
<depend>stereo_msgs</depend>
<depend>tf2</depend>
<depend>tf2_geometry_msgs</depend>
<depend>unzip</depend>
<depend>visualization_msgs</depend>
<depend>wget</depend>
<!-- ROS1 -->
<depend condition="$ROS_VERSION == 1">roscpp</depend>
<depend condition="$ROS_VERSION == 1">dynamic_reconfigure</depend>
<depend condition="$ROS_VERSION == 1">rviz_plugin_tutorials</depend>
<test_depend condition="$ROS_VERSION == 1">gtest</test_depend>
<!-- ROS2 -->
<test_depend condition="$ROS_VERSION == 2">ament_lint_auto</test_depend>
<test_depend condition="$ROS_VERSION == 2">ament_lint_common</test_depend>
<build_depend condition="$ROS_VERSION == 2">ament_cmake_xmllint</build_depend>
<!-- to recognize launch files -->
<exec_depend condition="$ROS_VERSION == 2">ros2launch</exec_depend>
<export>
<build_type condition="$ROS_VERSION == 1">catkin</build_type>
<build_type condition="$ROS_VERSION == 2">ament_cmake</build_type>
</export>
</package>