Skip to content

Commit

Permalink
feat: Allow package to be used directly with ROS/ROS 2 by providing p…
Browse files Browse the repository at this point in the history
…ackage manifest (#8783)
  • Loading branch information
2b-t authored Aug 2, 2023
1 parent 9bf13a0 commit 5915c2e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0"?>
<package format="2">
<name>darknet</name>
<version>0.1.0</version>
<description>Darknet, an open source neural network framework.</description>

<author email="you@example.com">Joseph Redmon</author>
<maintainer email="you@example.com">Alexey Bochkovskiy</maintainer>

<license>YOLO license</license>

<buildtool_depend>cmake</buildtool_depend>

<depend>libopencv-dev</depend>

<!-- nvidia-cuda-dev is just the libraries to link against -->
<exec_depend>nvidia-cuda-dev</exec_depend>

<!-- nvidia-cuda includes nvidia-cuda-dev plus the nvcc compiler -->
<build_depend>nvidia-cuda</build_depend>

<export>
<build_type>cmake</build_type>
</export>
</package>

0 comments on commit 5915c2e

Please sign in to comment.