mirror of
https://github.com/introlab/rtabmap_ros.git
synced 2026-09-12 06:10:19 +08:00
* Initial tests * more tests * More in-depth deskew() testing * slightly less verbose clamping corruption warning * added tf buffer related tests * added remaining tests * Added rosdoc2, improve tests when we require sync of odom stamp and sensor stamp * cleanup doc * fixing ci
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
## Configuration for rosdoc2, the documentation generator used by docs.ros.org.
|
|
## Regenerate the annotated default with:
|
|
## rosdoc2 default_config --package-path rtabmap_conversions
|
|
## Build the docs locally with:
|
|
## rosdoc2 build --package-path rtabmap_conversions --output-directory doc_output
|
|
|
|
## This 'attic section' self-documents this file's type and version.
|
|
type: 'rosdoc2 config'
|
|
version: 1
|
|
|
|
---
|
|
|
|
settings:
|
|
## Generate the standard index page from package.xml (description, maintainer,
|
|
## license, links) and a table of contents for the builders below.
|
|
generate_package_index: true
|
|
|
|
## This is an ament_cmake package, so doxygen runs on the public headers by
|
|
## default and there are no Python modules to document.
|
|
always_run_doxygen: false
|
|
always_run_sphinx_apidoc: false
|
|
|
|
builders:
|
|
## Doxygen parses the public C++ API out of include/.
|
|
- doxygen: {
|
|
name: 'rtabmap_conversions Public C/C++ API',
|
|
output_dir: 'generated/doxygen'
|
|
}
|
|
## Sphinx renders the landing page and pulls the Doxygen XML in through
|
|
## breathe/exhale so the API is browsable alongside the narrative docs.
|
|
- sphinx: {
|
|
name: 'rtabmap_conversions',
|
|
doxygen_xml_directory: 'generated/doxygen/xml',
|
|
output_dir: ''
|
|
}
|