-
Notifications
You must be signed in to change notification settings - Fork 0
/
Doxyfile
41 lines (28 loc) · 926 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
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "IR-Project"
PROJECT_BRIEF = "Delaunay and Prim implementation with a visualization of the results with SDL2"
OUTPUT_DIRECTORY = docs
BUILTIN_STL_SUPPORT = YES
INPUT = src/ include/ 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 = *.c *.h
# Function source code shown inline
INLINE_SOURCES = YES
# Generate class diagrams for base class
CLASS_DIAGRAMS = YES
GENERATE_TREEVIEW = YES
# Number of threads to use for DOT
DOT_NUM_THREADS = 4
# 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