-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide catkin package.xml per ROS REP 136
This provides the least intrusive, but most automated and correct method for releasing non-catkin packages through the ROS infrastructure. Instead of specifying the FCL version in CMakeModules/FCLVersion.cmake, that module reads the version from package.xml. This provides a single point of maintenance for the version number.
- Loading branch information
C. Andy Martin
committed
Jul 15, 2019
1 parent
2af546b
commit 8b08339
Showing
3 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<package format="2"> | ||
<name>fcl</name> | ||
<version>0.6.0</version> | ||
<description>FCL: the Flexible Collision Library</description> | ||
<maintainer email="[email protected]">TRI Geometry Team</maintainer> | ||
<license>BSD</license> | ||
<buildtool_depend>cmake</buildtool_depend> | ||
<depend>libccd-dev</depend> | ||
<depend>eigen</depend> | ||
<depend>octomap</depend> | ||
<!-- Following recommendations of REP 136 --> | ||
<exec_depend>catkin</exec_depend> | ||
<export> | ||
<build_type>cmake</build_type> | ||
</export> | ||
</package> |