-
Notifications
You must be signed in to change notification settings - Fork 0
/
Doxyfile
45 lines (32 loc) · 1012 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "Chess-cpp"
PROJECT_BRIEF = "Chess game with a CLI and GUI (SDL2) interface"
OUTPUT_DIRECTORY = docs
BUILTIN_STL_SUPPORT = YES
INPUT = src/ includes/ README.md
USE_MDFILE_AS_MAINPAGE = README.md
INPUT_ENCODING = UTF-8
RECURSIVE = YES
EXTRACT_ALL = YES
# Show private members of class
EXTRACT_PRIVATE = YES
# Show static members of class
EXTRACT_STATIC = YES
# Add all the header and source file extensions used
FILE_PATTERNS = *.cpp *.hpp
# Function source code shown inline
INLINE_SOURCES = YES
# Generate class diagrams for base class
CLASS_DIAGRAMS = YES
CLASS_GRAPH = YES
GENERATE_TREEVIEW = YES
COLLABORATION_GRAPH = NO
HAVE_DOT = YES
# Number of threads to use for DOT
DOT_NUM_THREADS = 4
DOT_NODE_ATTR = shape=record, style=filled, color=white
# Use UML notation for class diagrams
UML_LOOK = YES
# Show all members in UML class
UML_LIMIT_NUM_FIELDS = 0
OPTIMIZE_OUTPUT_FOR_C = YES