Clean up package.xml and add missing dependencies. (#19)
Clean up package.xml and add missing dependencies.master
parent
83faf925c0
commit
e5585c6ace
|
@ -25,7 +25,7 @@ Purpose
|
||||||
and mapping `SLAM`_ across multiple platforms and sensor configurations.
|
and mapping `SLAM`_ across multiple platforms and sensor configurations.
|
||||||
|
|
||||||
.. _Cartographer: https://github.com/googlecartographer/cartographer
|
.. _Cartographer: https://github.com/googlecartographer/cartographer
|
||||||
.. _SLAM: http://en.wikipedia.org/wiki/Simultaneous_localization_and_mapping
|
.. _SLAM: https://en.wikipedia.org/wiki/Simultaneous_localization_and_mapping
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
=============
|
=============
|
||||||
|
|
|
@ -24,7 +24,7 @@ Cartographer
|
||||||
and mapping `SLAM`_ across multiple platforms and sensor configurations.
|
and mapping `SLAM`_ across multiple platforms and sensor configurations.
|
||||||
|
|
||||||
.. _Cartographer: https://github.com/googlecartographer/cartographer
|
.. _Cartographer: https://github.com/googlecartographer/cartographer
|
||||||
.. _SLAM: http://en.wikipedia.org/wiki/Simultaneous_localization_and_mapping
|
.. _SLAM: https://en.wikipedia.org/wiki/Simultaneous_localization_and_mapping
|
||||||
|
|
||||||
Getting Started with ROS
|
Getting Started with ROS
|
||||||
========================
|
========================
|
||||||
|
|
34
package.xml
34
package.xml
|
@ -1,3 +1,4 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
<!--
|
<!--
|
||||||
Copyright 2016 The Cartographer Authors
|
Copyright 2016 The Cartographer Authors
|
||||||
|
|
||||||
|
@ -14,19 +15,36 @@
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<package>
|
<package format="2">
|
||||||
<name>cartographer</name>
|
<name>cartographer</name>
|
||||||
<version>1.0.0</version>
|
<version>1.0.0</version>
|
||||||
<description>TODO(hrapp): Describe for catkin.</description>
|
<description>
|
||||||
<maintainer email="nobody@google.com">Google</maintainer>
|
Cartographer is a system that provides real-time simultaneous localization
|
||||||
|
and mapping (SLAM) across multiple platforms and sensor configurations.
|
||||||
|
</description>
|
||||||
|
<maintainer email="google-cartographer@googlegroups.com">
|
||||||
|
The Cartographer Authors
|
||||||
|
</maintainer>
|
||||||
<license>Apache 2.0</license>
|
<license>Apache 2.0</license>
|
||||||
|
|
||||||
<run_depend>catkin</run_depend>
|
<url>https://github.com/googlecartographer/cartographer</url>
|
||||||
<run_depend>lua5.2-dev</run_depend>
|
|
||||||
<buildtool_depend>cmake</buildtool_depend>
|
<buildtool_depend>catkin</buildtool_depend>
|
||||||
<build_depend>ceres_catkin</build_depend>
|
|
||||||
|
<build_depend>g++-static</build_depend>
|
||||||
<build_depend>google-mock</build_depend>
|
<build_depend>google-mock</build_depend>
|
||||||
<build_depend>lua5.2-dev</build_depend>
|
<build_depend>python-sphinx</build_depend>
|
||||||
|
<build_depend>wget</build_depend> <!-- for glog -->
|
||||||
|
|
||||||
|
<depend>boost</depend>
|
||||||
|
<depend>ceres_catkin</depend>
|
||||||
|
<depend>eigen</depend>
|
||||||
|
<depend>libgflags-dev</depend>
|
||||||
|
<depend>libgoogle-glog-dev</depend>
|
||||||
|
<depend>lua5.2-dev</depend>
|
||||||
|
<depend>protobuf-dev</depend>
|
||||||
|
<depend>suitesparse</depend><!-- for Ceres -->
|
||||||
|
<!-- TODO(whess): This is missing libwebp-dev -->
|
||||||
|
|
||||||
<export>
|
<export>
|
||||||
<build_type>cmake</build_type>
|
<build_type>cmake</build_type>
|
||||||
|
|
Loading…
Reference in New Issue