-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package.xml to build as pure CMake package of a colcon workspace
- Loading branch information
1 parent
43570ae
commit 7c09f8c
Showing
1 changed file
with
27 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,27 @@ | ||
<?xml version="1.0"?> | ||
<package format="3"> | ||
<name>libfranka</name> | ||
<version>0.12.0</version> | ||
<description>libfranka is a C++ library for Franka Emika research robots</description> | ||
<maintainer email="[email protected]">Franka Emika GmbH</maintainer> | ||
<license>Apache 2.0</license> | ||
|
||
<url type="website">https://frankaemika.github.io</url> | ||
<url type="repository">https://github.com/frankaemika/libfranka</url> | ||
<url type="bugtracker">https://github.com/frankaemika/libfranka/issues</url> | ||
<author>Franka Emika GmbH</author> | ||
|
||
<buildtool_depend>cmake</buildtool_depend> | ||
|
||
<build_depend>libpoco-dev</build_depend> | ||
<build_depend>eigen</build_depend> | ||
|
||
<exec_depend>libpoco-dev</exec_depend> | ||
|
||
<doc_depend>doxygen</doc_depend> | ||
<doc_depend>graphviz</doc_depend> | ||
|
||
<export> | ||
<build_type>cmake</build_type> | ||
</export> | ||
</package> |