-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDoxyfile
More file actions
38 lines (32 loc) · 1.3 KB
/
Doxyfile
File metadata and controls
38 lines (32 loc) · 1.3 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
# Doxyfile configuration for Serpent
#---------------------------------------------------------------------------
# Project related settings
#---------------------------------------------------------------------------
PROJECT_NAME = "Serpent"
PROJECT_BRIEF = "A modular RAG framework for C++"
OUTPUT_DIRECTORY = doxygen
CREATE_SUBDIRS = NO
#---------------------------------------------------------------------------
# Input settings
#---------------------------------------------------------------------------
INPUT = include src
FILE_PATTERNS = *.cc *.h *.hpp
RECURSIVE = YES
EXTRACT_ALL = YES
# Exclude external dependencies
EXCLUDE = external
EXCLUDE_PATTERNS = */external/*
#---------------------------------------------------------------------------
# Output formats
#---------------------------------------------------------------------------
# HTML output will be placed in docs/html
GENERATE_HTML = YES
HTML_OUTPUT = html
# Disable LaTeX to avoid latex dependency
GENERATE_LATEX = NO
#---------------------------------------------------------------------------
# Optional tweaks
#---------------------------------------------------------------------------
QUIET = YES
WARNINGS = YES
WARN_IF_UNDOCUMENTED = NO