-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathcommon.dox
62 lines (49 loc) · 1.74 KB
/
common.dox
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
# Doxygen common configuration
# the standard developer kit documentation
QUIET = NO
WARNINGS = YES
BUILTIN_STL_SUPPORT = YES
# Output formats
GENERATE_HTMLHELP = NO
GENERATE_QHP = NO
GENERATE_LATEX = NO
GENERATE_MAN = NO
GENERATE_RTF = NO
# Preprocessing options
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = YES
EXPAND_ONLY_PREDEF = YES
# DOXYGEN_IGNORE is predefined to allow developers to hide portions
# of code to doxygen as follows:
#
# #ifndef DOXYGEN_IGNORE
# internal classes and other private declarations that should not
# be documented...
# #endif // DOXYGEN_IGNORE
PREDEFINED = "DOXYGEN_IGNORE="
# DOXYGEN_ONLY is predefined to allow developers to write portions
# of code that must be parsed only by doxygen:
#
# #ifdef DOXYGEN_ONLY
# Define missing types (especially template parameters)
# that cause the documentation generation to fail
# #endif // DOXYGEN_ONLY
PREDEFINED += "DOXYGEN_ONLY=1"
# Various Export preprocessor macros
PREDEFINED += "__cplusplus=199711"
PREDEFINED += "__linux__="
PREDEFINED += "__x86_64="
PREDEFINED += "__GNUC__="
PREDEFINED += "_OPENMP="
PREDEFINED += "GEO_OS_LINUX="
PREDEFINED += "GEO_OS_UNIX="
PREDEFINED += "GEO_OS_X11="
PREDEFINED += "GEO_COMPILER_GCC="
PREDEFINED += "GEO_OPENMP="
PREDEFINED += "GEOGRAM_API="
PREDEFINED += "NO_GEOGRAM_API="
PREDEFINED += "VORPALIB_API="
PREDEFINED += "NO_VORPALIB_API="
PREDEFINED += "Q_OBJECT="
PREDEFINED += "WINAPI="
PREDEFINED += "GEOGRAM_WITH_PDEL="