-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDoxyfile
More file actions
60 lines (53 loc) · 2.29 KB
/
Doxyfile
File metadata and controls
60 lines (53 loc) · 2.29 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
# Doxyfile - Doxygen configuration for Conch Cross-Platform
#---------------------------------------------------------------------------
# Project configuration
#---------------------------------------------------------------------------
PROJECT_NAME = "Conch Cross-Platform"
PROJECT_NUMBER = "1.0.0"
PROJECT_BRIEF = "Modern C++ Cross-Platform Framework for HFT and RTC"
OUTPUT_DIRECTORY = docs
CREATE_SUBDIRS = NO
#---------------------------------------------------------------------------
# Build configuration
#---------------------------------------------------------------------------
EXTRACT_ALL = YES
EXTRACT_PRIVATE = NO
EXTRACT_STATIC = YES
RECURSIVE = YES
#---------------------------------------------------------------------------
# Input configuration
#---------------------------------------------------------------------------
INPUT = src/libs src/servers src/apps README.rst
FILE_PATTERNS = *.cpp *.h *.hpp *.md *.rst
EXCLUDE_PATTERNS = */build/* */build_*/* */.conan/* */CMakeFiles/*
#---------------------------------------------------------------------------
# Output formats
#---------------------------------------------------------------------------
GENERATE_HTML = YES
GENERATE_LATEX = NO
HTML_OUTPUT = html
HTML_COLORSTYLE_HUE = 220
HTML_COLORSTYLE_SAT = 100
HTML_COLORSTYLE_GAMMA = 80
#---------------------------------------------------------------------------
# Preprocessor
#---------------------------------------------------------------------------
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
EXPAND_ONLY_PREDEF = NO
#---------------------------------------------------------------------------
# Diagrams
#---------------------------------------------------------------------------
HAVE_DOT = YES
DOT_NUM_THREADS = 4
CALL_GRAPH = YES
CALLER_GRAPH = YES
CLASS_DIAGRAMS = YES
UML_LOOK = YES
#---------------------------------------------------------------------------
# Other options
#---------------------------------------------------------------------------
QUIET = NO
WARNINGS = YES
WARN_IF_UNDOCUMENTED = YES
WARN_IF_DOC_ERROR = YES