-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add package manifest to be able to build autopsy inside ROS workspace
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?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>autopsy</name> | ||
<version>0.3.0</version> | ||
<description>A set of Python utils for F1Tenth project.</description> | ||
|
||
<maintainer email="[email protected]">Jaroslav Klapálek</maintainer> | ||
|
||
<license>GPLv3</license> | ||
|
||
<author email="[email protected]">Jaroslav Klapálek</author> | ||
|
||
<url type="repository">https://github.com/jara001/autopsy</url> | ||
|
||
<buildtool_depend condition="$ROS_VERSION == 1">catkin</buildtool_depend> | ||
|
||
<!-- Packages dependencies. --> | ||
<exec_depend condition="$ROS_VERSION == 1">rospy</exec_depend> | ||
<exec_depend condition="$ROS_VERSION == 2">rclpy</exec_depend> | ||
|
||
<export> | ||
<!-- Additional parameters for Index. Add repository url (SSH) here, as private repositories are not reachable by HTTPS. --> | ||
<index url="[email protected]:jara001/autopsy.git" /> | ||
<!-- ROS1 Build type --> | ||
<!-- Should not be required (as ROS1 defaults to catkin), but with the other dependency it is completely lost. --> | ||
<build_type condition="$ROS_VERSION == 1">catkin</build_type> | ||
<!-- ROS2 Build type --> | ||
<build_type condition="$ROS_VERSION == 2">ament_python</build_type> | ||
</export> | ||
|
||
</package> |