forked from norlab-ulaval/libnabo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.xml
40 lines (35 loc) · 1.84 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
<?xml version='1.0' encoding='utf-8'?>
<package format="3">
<name>libnabo</name>
<version>1.0.30</version>
<description>libnabo is a fast K Nearest Neighbour library for low-dimensional spaces.</description>
<maintainer email="[email protected]">Yoshua Nava</maintainer>
<maintainer email="[email protected]">Maximilian Wulf</maintainer>
<license>BSD</license>
<url type="repository">https://github.com/anybotics/libnabo</url>
<author email="[email protected]">Stéphane Magnenat</author>
<!-- If a pure-cmake build is desired, the buildtool should be switched to 'cmake' -->
<!-- On the other hand, if a catkin build is desired, the build tool depend should be 'catkin' -->
<buildtool_depend condition="$ROS_VERSION == 1">catkin</buildtool_depend>
<buildtool_depend condition="$ROS_VERSION == 2">ament_cmake</buildtool_depend>
<!-- <build_depend condition="$ROS_VERSION == 1">cmake_clang_tools</build_depend> -->
<build_depend condition="$ROS_VERSION == 1">boost</build_depend>
<build_depend>eigen</build_depend>
<build_depend condition="$ROS_VERSION == 1">libomp-dev</build_depend>
<exec_depend condition="$ROS_VERSION == 1">boost</exec_depend>
<exec_depend condition="$ROS_VERSION == 1">eigen</exec_depend>
<exec_depend condition="$ROS_VERSION == 1">catkin</exec_depend>
<!-- <test_depend condition="$ROS_VERSION == 1">cmake_code_coverage</test_depend> -->
<test_depend condition="$ROS_VERSION == 1">gtest</test_depend>
<test_depend condition="$ROS_VERSION == 2">ament_cmake_gtest</test_depend>
<export>
<build_type condition="$ROS_VERSION == 2">ament_cmake</build_type>
</export>
<!-- For a pure-cmake build the package must be exported explicitly -->
<!-- Thus the following block of code must be un-commented -->
<!--
<export>
<build_type>cmake</build_type>
</export>
-->
</package>