-
Notifications
You must be signed in to change notification settings - Fork 95
/
Doxyfile
26 lines (20 loc) · 1016 Bytes
/
Doxyfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# All settings not listed here will use the Doxygen default values.
PROJECT_NAME = "class_loader"
PROJECT_NUMBER = master
PROJECT_BRIEF = "The class_loader package is a ROS-independent package for loading plugins \
during runtime."
INPUT = README.md ./include ./QUALITY_DECLARATION.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 += CLASS_LOADER_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/"
TAGFILES += "../../../doxygen_tag_files/rcpputils.tag=http://docs.ros2.org/latest/api/rcpputils/"
GENERATE_TAGFILE = "../../../doxygen_tag_files/class_loader.tag"