This repository has been archived by the owner on May 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 146
/
.codedocs
84 lines (78 loc) · 2.78 KB
/
.codedocs
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#---------------------------------------------------------------------------
# CodeDocs Configuration
#---------------------------------------------------------------------------
# Include the Doxygen configuration from another file.
# The file must be a relative path with respect to the root of the repository.
DOXYFILE =
# Specify external repository to link documentation with.
# This is similar to Doxygen's TAGFILES option, but will automatically link to
# tags of other repositories already using CodeDocs. List each repository to
# link with by giving its location in the form of owner/repository.
# For example:
# TAGLINKS = doxygen/doxygen CodeDocs/osg
# Note: these repositories must already be built on CodeDocs.
TAGLINKS =
#---------------------------------------------------------------------------
# Doxygen Configuration
#---------------------------------------------------------------------------
# Doxygen configuration may also be placed in this file.
# Currently, the following Doxygen configuration options are available. Refer
# to http://doxygen.org/manual/config.html for detailed explanation of the
# options. To request support for more options, contact [email protected].
#
# ABBREVIATE_BRIEF =
ALIASES = "func{1}=<b>\1</b>" \
"fparam{1}=<em>\1</em>" \
"file{1}=<tt>\1</tt>" \
"comment{1}=/* \1 */" \
"co{1}=/* \1 */" \
"undoc=\xrefitem undoc \"Undocumented\" \"Undocumented\""
ALPHABETICAL_INDEX = YES
ALWAYS_DETAILED_SEC = NO
CASE_SENSE_NAMES = NO
CLASS_DIAGRAMS = YES
DISABLE_INDEX = NO
DISTRIBUTE_GROUP_DOC = NO
# EXAMPLE_PATH =
EXCLUDE = src/tests \
src/psmoveconfigtool \
src/psmovemath \
src/psmoveprotocol \
src/psmoveservice
# EXCLUDE_PATTERNS =
# EXCLUDE_SYMBOLS =
# EXTENSION_MAPPING =
EXTRACT_LOCAL_CLASSES = YES
FILE_PATTERNS = *.cpp \
*.h
# GENERATE_TAGFILE =
GENERATE_TREEVIEW = NO
HIDE_COMPOUND_REFERENCE = NO
HIDE_SCOPE_NAMES = NO
# EXPAND_AS_DEFINED =
# PREDEFINED = Build64
ENABLE_PREPROCESSING = YES
HIDE_UNDOC_CLASSES = NO
HIDE_UNDOC_MEMBERS = NO
HTML_TIMESTAMP = YES
# RECURSIVE =
INPUT = src/
INLINE_GROUPED_CLASSES = NO
INPUT_ENCODING = UTF-8
INTERNAL_DOCS = NO
OPTIMIZE_OUTPUT_FOR_C = NO
PROJECT_BRIEF = A background service that communicates with the psmove and stores pose and button data.
PROJECT_NAME = PSMoveService
# PROJECT_NUMBER =
SHORT_NAMES = NO
SHOW_FILES = YES
SHOW_INCLUDE_FILES = YES
SHOW_NAMESPACES = YES
SORT_BRIEF_DOCS = NO
SORT_BY_SCOPE_NAME = NO
SORT_MEMBER_DOCS = YES
STRICT_PROTO_MATCHING = NO
TYPEDEF_HIDES_STRUCT = NO
# USE_MDFILE_AS_MAINPAGE =
VERBATIM_HEADERS = YES
#