-
Notifications
You must be signed in to change notification settings - Fork 126
/
doxygen_config.cmake.in
35 lines (29 loc) · 1.4 KB
/
doxygen_config.cmake.in
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
#set the name and version of the project according to the configuration in CMakeLists.txt
PROJECT_NAME = "@CMAKE_PROJECT_NAME@"
PROJECT_NUMBER = @VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@
#Set input and output directories
INPUT = "@CMAKE_CURRENT_SOURCE_DIR@"
INPUT += "@CMAKE_CURRENT_SOURCE_DIR@/README.md"
USE_MDFILE_AS_MAINPAGE = "@CMAKE_CURRENT_SOURCE_DIR@/README.md"
OUTPUT_DIRECTORY = "@CMAKE_CURRENT_SOURCE_DIR@/doc"
IMAGE_PATH = "@CMAKE_CURRENT_SOURCE_DIR@/doc/images"
RECURSIVE = YES
# There is no standard configuration for .proto files documentation.
# A Doxygen filter for .proto files has to be added under the directory doc/.
# proto2cpp.py is an external script. See README.md for more informations.
JAVADOC_AUTOBRIEF = YES
REPEAT_BRIEF = YES
ALWAYS_DETAILED_SEC = YES
EXTENSION_MAPPING = proto=C++
FILE_PATTERNS = *.proto
INPUT_FILTER = "python @FILTER_PROTO2CPP_PY_PATH@/proto2cpp.py"
HAVE_DOT = YES
HIDE_UNDOC_RELATIONS = NO
MAX_DOT_GRAPH_DEPTH = 2
SORT_MEMBER_DOCS = NO
USE_MATHJAX = YES
# Translate \rules and \endrules to something more readable
ALIASES = "rules=\par Rules\n\code{.unparsed}" "endrules=\endcode"
# If someone wants UML diagrams in the documentation, the next parameter must
# be commented in.
#UML_LOOK = YES