-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.xml
More file actions
21 lines (16 loc) · 742 Bytes
/
package.xml
File metadata and controls
21 lines (16 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<!-- A package.xml in the root of a cmake projects allows it to be built using catkin or colcon (the ROS build system) -->
<package format="2">
<name>json_struct</name>
<version>0.0.1</version>
<description>
json_struct is a single header only library that parses JSON to C++ structs/classes and serializing structs/classes to JSON.
</description>
<maintainer email="jorgen.lind@gmail.com">Jørgen Lind</maintainer>
<license>MIT</license>
<buildtool_depend>cmake</buildtool_depend>
<export>
<build_type>cmake</build_type>
</export>
</package>