-
Notifications
You must be signed in to change notification settings - Fork 54
/
Doxyfile
30 lines (24 loc) · 1.18 KB
/
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
27
28
29
30
# All settings not listed here will use the Doxygen default values.
PROJECT_NAME = "rcpputils"
PROJECT_NUMBER = master
PROJECT_BRIEF = "C++ API providing common utilities and data structures."
# Use these lines to include the generated logging_macro.h (update install path if needed)
INPUT = README.md QUALITY_DECLARATION.md CONTRIBUTING.md ./include ./docs
USE_MDFILE_AS_MAINPAGE = README.md
RECURSIVE = YES
OUTPUT_DIRECTORY = doc_output
EXTRACT_ALL = YES
SORT_MEMBER_DOCS = NO
GENERATE_LATEX = NO
GENERATE_XML = YES
EXCLUDE_SYMBOLS = detail details
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
EXPAND_ONLY_PREDEF = YES
PREDEFINED += __declspec(x)=
PREDEFINED += RCPPUTILS_PUBLIC=
PREDEFINED += RCPPUTILS_PUBLIC_TYPE=
# 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/"
# Uncomment to generate tag files for cross-project linking.
#GENERATE_TAGFILE = "../../../doxygen_tag_files/rcpputils.tag"