From 0d27a03a4f554b57362d9b24ee99fef0be0174fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Hern=C3=A1ndez=20Cordero?= Date: Wed, 29 Apr 2020 09:17:30 +0200 Subject: [PATCH] added rcl yaml param parser doxyfile (#634) * Added rcl yaml param parser Doxyfile Signed-off-by: ahcorde * Added feedback Signed-off-by: ahcorde * Fixed predefined tag Signed-off-by: ahcorde --- rcl_yaml_param_parser/Doxyfile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 rcl_yaml_param_parser/Doxyfile diff --git a/rcl_yaml_param_parser/Doxyfile b/rcl_yaml_param_parser/Doxyfile new file mode 100644 index 0000000..3d8981a --- /dev/null +++ b/rcl_yaml_param_parser/Doxyfile @@ -0,0 +1,27 @@ +# All settings not listed here will use the Doxygen default values. + +PROJECT_NAME = "rcl_yaml_param_parser" +PROJECT_NUMBER = master +PROJECT_BRIEF = "Parse a YAML parameter file and populate the C data structure." + +INPUT = ./include README.md +USE_MDFILE_AS_MAINPAGE = README.md +RECURSIVE = YES +OUTPUT_DIRECTORY = doc_output + +EXTRACT_ALL = YES +SORT_MEMBER_DOCS = NO + +GENERATE_LATEX = NO + +ENABLE_PREPROCESSING = YES +MACRO_EXPANSION = YES +EXPAND_ONLY_PREDEF = YES +PREDEFINED += RCL_YAML_PARAM_PARSER_PUBLIC= + +# Tag files that do not exist will produce a warning and cross-project linking will not work. +TAGFILES += "../../../../doxygen_tag_files/cppreference-doxygen-web.tag.xml=http://en.cppreference.com/w/" +# Consider changing "latest" to the version you want to reference (e.g. beta1 or 1.0.0) +TAGFILES += "../../../../doxygen_tag_files/rcutils.tag=http://docs.ros2.org//api/rcutils/" +# Uncomment to generate tag files for cross-project linking. +GENERATE_TAGFILE = "../../../../doxygen_tag_files/rcl_yaml_param_parser.tag"