-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.xml
49 lines (38 loc) · 1.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
<?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>robot_interfaces</name>
<version>1.2.0</version>
<description>
This package provides C++ interfaces (purely virtual classes) for
different robots. The idea is to use this interface both for the real
robots as well as the simulators.
</description>
<author email="[email protected]">Manuel Wuthrich</author>
<maintainer email="[email protected]">Manuel Wuthrich</maintainer>
<maintainer email="[email protected]">Felix Widmaier</maintainer>
<license>BSD 3-clause</license>
<!-- Build Dependencies -->
<buildtool_depend>ament_cmake</buildtool_depend>
<buildtool_depend>ament_cmake_python</buildtool_depend>
<buildtool_depend>pybind11_vendor</buildtool_depend>
<buildtool_depend>mpi_cmake_modules</buildtool_depend>
<!-- Dependencies -->
<depend>pybind11</depend>
<depend>Eigen3</depend>
<depend>real_time_tools</depend>
<depend>time_series</depend>
<depend>signal_handler</depend>
<depend>serialization_utils</depend>
<depend>Threads</depend>
<depend>rt</depend>
<!-- Unit tests -->
<test_depend>ament_cmake_gtest</test_depend>
<test_depend>ament_cmake_pytest</test_depend>
<test_depend>Boost</test_depend>
<export>
<build_type>ament_cmake</build_type>
</export>
</package>