-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDoxyfile
More file actions
111 lines (88 loc) · 2.68 KB
/
Doxyfile
File metadata and controls
111 lines (88 loc) · 2.68 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Doxyfile 1.12.0
# Basic project settings
PROJECT_NAME = math_library
PROJECT_BRIEF = "Header-only math library for computer graphics with SIMD instructions"
# Path to source files
INPUT = ./include ./src
RECURSIVE = YES
# Output format
GENERATE_HTML = YES
HTML_OUTPUT = html
GENERATE_LATEX = NO
GENERATE_MAN = NO
GENERATE_RTF = NO
GENERATE_XML = NO
# Output directory
OUTPUT_DIRECTORY = ./docs
# Code processing settings
EXTRACT_ALL = YES
EXTRACT_PRIVATE = NO
EXTRACT_STATIC = NO
EXTRACT_LOCAL_CLASSES = YES
EXTRACT_ANON_NSPACES = NO
# Include all header files
FILE_PATTERNS = *.h \
*.hpp \
*.cpp \
*.inl
# File processing settings
RECURSIVE = YES
EXCLUDE_PATTERNS = */exe/* \
*/tests/* \
*/benchmarks/* \
*/third_party/*
# Dependency graph generation
HAVE_DOT = YES
CALL_GRAPH = YES
CALLER_GRAPH = YES
CLASS_DIAGRAMS = YES
INCLUDE_GRAPH = YES
INCLUDED_BY_GRAPH = YES
# Graph generation and diagrams
DOTFILE_DIRS = ./
MAX_DOT_GRAPH_DEPTH = 2
DOT_CLEANUP = YES
# Warning and error output
WARNINGS = YES
WARN_IF_UNDOCUMENTED = YES
WARN_IF_DOC_ERROR = YES
# Comment style
JAVADOC_AUTOBRIEF = YES
MULTILINE_CPP_IS_BRIEF = NO
# Support for C++11/20 syntax
CLANG_ASSISTED_PARSING = YES
CLANG_OPTIONS = -std=c++20
# Directories and dependencies
INCLUDE_PATH = ./include ./src/lib
# Group generation (e.g., for classes and functions)
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
EXPAND_ONLY_PREDEF = NO
# Doxygen alias configuration
ALIASES += "todo=\todo"
ALIASES += "deprecated=\deprecated"
# Sorting options
SORT_MEMBER_DOCS = YES
SORT_BRIEF_DOCS = YES
# Options for maintaining cross-references
GENERATE_TREEVIEW = YES
# Detail level
SHOW_INCLUDE_FILES = YES
SHOW_USED_FILES = YES
# Markdown support
MARKDOWN_SUPPORT = YES
AUTOLINK_SUPPORT = YES
INLINE_SOURCES = NO
# Table of contents generation
GENERATE_TODOLIST = YES
GENERATE_DEPRECATEDLIST = YES
# Styling and appearance for documentation
GENERATE_HTML = YES
HTML_OUTPUT = html
HTML_FILE_EXTENSION = .html
HTML_HEADER =
HTML_FOOTER =
HTML_STYLESHEET =
HTML_COLORSTYLE = AUTO_LIGHT
HTML_TIMESTAMP = YES
SEARCHENGINE = YES