Skip to content

Commit dd5302b

Browse files
committed
Add a metapackage.
[Metapackage](http://www.ros.org/reps/rep-0142.html) is commonly added to a ROS-based package suite where multiple packages are in. It allows to specify a single package upon build, e.g. `catkin build reuleaux`, and it's always good for people to access the single point of entry for the package.
1 parent fb1228d commit dd5302b

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

reuleaux/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(reuleaux)
3+
find_package(catkin REQUIRED)
4+
catkin_metapackage()

reuleaux/package.xml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0"?>
2+
<package>
3+
<name>reuleaux</name>
4+
<version>0.0.0</version>
5+
<description>reuleaux metapackage</description>
6+
<maintainer email="[email protected]">Abhijit Makhal</maintainer>
7+
<author email="[email protected]">Abhijit Makhal</author>
8+
<license>Apache 2.0</license>
9+
<url type="website">http://wiki.ros.org/reuleaux</url>
10+
<url type="repository">https://github.com/ros-industrial-consortium/reuleaux</url>
11+
<url type="bugtracker">https://github.com/ros-industrial-consortium/reuleaux/issues</url>
12+
13+
<buildtool_depend>catkin</buildtool_depend>
14+
<run_depend>base_placement_plugin</run_depend>
15+
<run_depend>map_creator</run_depend>
16+
<run_depend>workspace_visualization</run_depend>
17+
18+
<export>
19+
<metapackage/>
20+
</export>
21+
</package>

0 commit comments

Comments
 (0)