-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.xml
65 lines (51 loc) · 2.24 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
65
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<!-- This is a ROS package file, intended to allow this library to be built
side-by-side to ROS packages in a catkin/ament environment.
-->
<package format="3">
<name>mola_lidar_odometry</name>
<version>0.3.3</version>
<description>LIDAR odometry system based on MOLA and MRPT components</description>
<maintainer email="[email protected]">Jose-Luis Blanco-Claraco</maintainer>
<license>GPLv3</license>
<url type="website">https://docs.mola-slam.org/</url>
<url type="repository">https://github.com/MOLAorg/mola_lidar_odometry/</url>
<!-- core dependencies -->
<depend>mola_common</depend>
<depend>mola_kernel</depend>
<depend>mp2p_icp</depend>
<depend>mola_navstate_fuse</depend>
<depend>mola_pose_list</depend>
<depend>mrpt_libtclap</depend>
<depend>mrpt_libmaps</depend>
<!-- dataset input sources (all are actually optional) -->
<depend>mola_input_kitti_dataset</depend>
<depend>mola_input_kitti360_dataset</depend>
<depend>mola_input_mulran_dataset</depend>
<depend>mola_input_rawlog</depend>
<depend>mola_input_rosbag2</depend>
<depend>mola_input_paris_luco_dataset</depend>
<doc_depend>doxygen</doc_depend>
<!-- Entries to make ROS 2 to discover this as a proper package -->
<build_depend>ros_environment</build_depend>
<build_depend>ament_cmake_xmllint</build_depend>
<buildtool_depend>cmake</buildtool_depend>
<buildtool_depend>ament_cmake_gtest</buildtool_depend>
<buildtool_depend>ament_cmake</buildtool_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>ament_cmake_xmllint</test_depend>
<test_depend>ament_lint_cmake</test_depend>
<test_depend>ament_cmake_gtest</test_depend>
<!-- Needed by the mola-lo-* scripts: -->
<exec_depend>mola_launcher</exec_depend>
<exec_depend>mola_viz</exec_depend>
<!-- Test datasets to run on them: -->
<test_depend>mola_test_datasets</test_depend>
<test_depend>mola_metric_maps</test_depend>
<test_depend>rosbag2_storage_mcap</test_depend> <!-- Needed to be able to open mcap test files -->
<export>
<build_type>ament_cmake</build_type>
</export>
<!-- End -->
</package>