forked from micro-ROS/rcutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Doxyfile
33 lines (27 loc) · 1.39 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
31
32
33
# All settings not listed here will use the Doxygen default values.
PROJECT_NAME = "rcutils"
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 ../../../install_isolated/rcutils/include
#STRIP_FROM_PATH = /Users/william/ros2_ws/install_isolated/rcutils/include
# Otherwise just generate for the local (non-generated header files)
INPUT = README.md ./include
EXCLUDE_PATTERNS = */stdatomic_helper/*
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 += RCUTILS_PUBLIC=
PREDEFINED += RCUTILS_PUBLIC_TYPE=
PREDEFINED += RCUTILS_WARN_UNUSED=
PREDEFINED += RCUTILS_ENABLE_FAULT_INJECTION=
# 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/rcutils.tag"