1*5afab0e5SDag-Erling Smørgrav# Doxyfile 1.9.1 2*5afab0e5SDag-Erling Smørgrav 3*5afab0e5SDag-Erling Smørgrav# This file describes the settings to be used by the documentation system 4*5afab0e5SDag-Erling Smørgrav# doxygen (www.doxygen.org) for a project. 5*5afab0e5SDag-Erling Smørgrav# 6*5afab0e5SDag-Erling Smørgrav# All text after a double hash (##) is considered a comment and is placed in 7*5afab0e5SDag-Erling Smørgrav# front of the TAG it is preceding. 8*5afab0e5SDag-Erling Smørgrav# 9*5afab0e5SDag-Erling Smørgrav# All text after a single hash (#) is considered a comment and will be ignored. 10*5afab0e5SDag-Erling Smørgrav# The format is: 11*5afab0e5SDag-Erling Smørgrav# TAG = value [value, ...] 12*5afab0e5SDag-Erling Smørgrav# For lists, items can also be appended using: 13*5afab0e5SDag-Erling Smørgrav# TAG += value [value, ...] 14*5afab0e5SDag-Erling Smørgrav# Values that contain spaces should be placed between quotes (\" \"). 15*5afab0e5SDag-Erling Smørgrav 16*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 17*5afab0e5SDag-Erling Smørgrav# Project related configuration options 18*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 19*5afab0e5SDag-Erling Smørgrav 20*5afab0e5SDag-Erling Smørgrav# This tag specifies the encoding used for all characters in the configuration 21*5afab0e5SDag-Erling Smørgrav# file that follow. The default is UTF-8 which is also the encoding used for all 22*5afab0e5SDag-Erling Smørgrav# text before the first occurrence of this tag. Doxygen uses libiconv (or the 23*5afab0e5SDag-Erling Smørgrav# iconv built into libc) for the transcoding. See 24*5afab0e5SDag-Erling Smørgrav# https://www.gnu.org/software/libiconv/ for the list of possible encodings. 25*5afab0e5SDag-Erling Smørgrav# The default value is: UTF-8. 26*5afab0e5SDag-Erling Smørgrav 27*5afab0e5SDag-Erling SmørgravDOXYFILE_ENCODING = UTF-8 28*5afab0e5SDag-Erling Smørgrav 29*5afab0e5SDag-Erling Smørgrav# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by 30*5afab0e5SDag-Erling Smørgrav# double-quotes, unless you are using Doxywizard) that should identify the 31*5afab0e5SDag-Erling Smørgrav# project for which the documentation is generated. This name is used in the 32*5afab0e5SDag-Erling Smørgrav# title of most generated pages and in a few other places. 33*5afab0e5SDag-Erling Smørgrav# The default value is: My Project. 34*5afab0e5SDag-Erling Smørgrav 35*5afab0e5SDag-Erling SmørgravPROJECT_NAME = @PACKAGE_NAME@ 36*5afab0e5SDag-Erling Smørgrav 37*5afab0e5SDag-Erling Smørgrav# The PROJECT_NUMBER tag can be used to enter a project or revision number. This 38*5afab0e5SDag-Erling Smørgrav# could be handy for archiving the generated documentation or if some version 39*5afab0e5SDag-Erling Smørgrav# control system is used. 40*5afab0e5SDag-Erling Smørgrav 41*5afab0e5SDag-Erling SmørgravPROJECT_NUMBER = @PACKAGE_VERSION@ 42*5afab0e5SDag-Erling Smørgrav 43*5afab0e5SDag-Erling Smørgrav# Using the PROJECT_BRIEF tag one can provide an optional one line description 44*5afab0e5SDag-Erling Smørgrav# for a project that appears at the top of each page and should give viewer a 45*5afab0e5SDag-Erling Smørgrav# quick idea about the purpose of the project. Keep the description short. 46*5afab0e5SDag-Erling Smørgrav 47*5afab0e5SDag-Erling SmørgravPROJECT_BRIEF = 48*5afab0e5SDag-Erling Smørgrav 49*5afab0e5SDag-Erling Smørgrav# With the PROJECT_LOGO tag one can specify a logo or an icon that is included 50*5afab0e5SDag-Erling Smørgrav# in the documentation. The maximum height of the logo should not exceed 55 51*5afab0e5SDag-Erling Smørgrav# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy 52*5afab0e5SDag-Erling Smørgrav# the logo to the output directory. 53*5afab0e5SDag-Erling Smørgrav 54*5afab0e5SDag-Erling SmørgravPROJECT_LOGO = doc/images/LogoInGradientBar2-y100.png 55*5afab0e5SDag-Erling Smørgrav 56*5afab0e5SDag-Erling Smørgrav# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path 57*5afab0e5SDag-Erling Smørgrav# into which the generated documentation will be written. If a relative path is 58*5afab0e5SDag-Erling Smørgrav# entered, it will be relative to the location where doxygen was started. If 59*5afab0e5SDag-Erling Smørgrav# left blank the current directory will be used. 60*5afab0e5SDag-Erling Smørgrav 61*5afab0e5SDag-Erling SmørgravOUTPUT_DIRECTORY = doc/ 62*5afab0e5SDag-Erling Smørgrav 63*5afab0e5SDag-Erling Smørgrav# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 64*5afab0e5SDag-Erling Smørgrav# directories (in 2 levels) under the output directory of each output format and 65*5afab0e5SDag-Erling Smørgrav# will distribute the generated files over these directories. Enabling this 66*5afab0e5SDag-Erling Smørgrav# option can be useful when feeding doxygen a huge amount of source files, where 67*5afab0e5SDag-Erling Smørgrav# putting all generated files in the same directory would otherwise causes 68*5afab0e5SDag-Erling Smørgrav# performance problems for the file system. 69*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 70*5afab0e5SDag-Erling Smørgrav 71*5afab0e5SDag-Erling SmørgravCREATE_SUBDIRS = NO 72*5afab0e5SDag-Erling Smørgrav 73*5afab0e5SDag-Erling Smørgrav# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 74*5afab0e5SDag-Erling Smørgrav# characters to appear in the names of generated files. If set to NO, non-ASCII 75*5afab0e5SDag-Erling Smørgrav# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode 76*5afab0e5SDag-Erling Smørgrav# U+3044. 77*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 78*5afab0e5SDag-Erling Smørgrav 79*5afab0e5SDag-Erling SmørgravALLOW_UNICODE_NAMES = NO 80*5afab0e5SDag-Erling Smørgrav 81*5afab0e5SDag-Erling Smørgrav# The OUTPUT_LANGUAGE tag is used to specify the language in which all 82*5afab0e5SDag-Erling Smørgrav# documentation generated by doxygen is written. Doxygen will use this 83*5afab0e5SDag-Erling Smørgrav# information to generate all constant output in the proper language. 84*5afab0e5SDag-Erling Smørgrav# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, 85*5afab0e5SDag-Erling Smørgrav# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), 86*5afab0e5SDag-Erling Smørgrav# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, 87*5afab0e5SDag-Erling Smørgrav# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), 88*5afab0e5SDag-Erling Smørgrav# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, 89*5afab0e5SDag-Erling Smørgrav# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, 90*5afab0e5SDag-Erling Smørgrav# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, 91*5afab0e5SDag-Erling Smørgrav# Ukrainian and Vietnamese. 92*5afab0e5SDag-Erling Smørgrav# The default value is: English. 93*5afab0e5SDag-Erling Smørgrav 94*5afab0e5SDag-Erling SmørgravOUTPUT_LANGUAGE = English 95*5afab0e5SDag-Erling Smørgrav 96*5afab0e5SDag-Erling Smørgrav# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all 97*5afab0e5SDag-Erling Smørgrav# documentation generated by doxygen is written. Doxygen will use this 98*5afab0e5SDag-Erling Smørgrav# information to generate all generated output in the proper direction. 99*5afab0e5SDag-Erling Smørgrav# Possible values are: None, LTR, RTL and Context. 100*5afab0e5SDag-Erling Smørgrav# The default value is: None. 101*5afab0e5SDag-Erling Smørgrav 102*5afab0e5SDag-Erling SmørgravOUTPUT_TEXT_DIRECTION = None 103*5afab0e5SDag-Erling Smørgrav 104*5afab0e5SDag-Erling Smørgrav# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member 105*5afab0e5SDag-Erling Smørgrav# descriptions after the members that are listed in the file and class 106*5afab0e5SDag-Erling Smørgrav# documentation (similar to Javadoc). Set to NO to disable this. 107*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 108*5afab0e5SDag-Erling Smørgrav 109*5afab0e5SDag-Erling SmørgravBRIEF_MEMBER_DESC = YES 110*5afab0e5SDag-Erling Smørgrav 111*5afab0e5SDag-Erling Smørgrav# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief 112*5afab0e5SDag-Erling Smørgrav# description of a member or function before the detailed description 113*5afab0e5SDag-Erling Smørgrav# 114*5afab0e5SDag-Erling Smørgrav# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 115*5afab0e5SDag-Erling Smørgrav# brief descriptions will be completely suppressed. 116*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 117*5afab0e5SDag-Erling Smørgrav 118*5afab0e5SDag-Erling SmørgravREPEAT_BRIEF = YES 119*5afab0e5SDag-Erling Smørgrav 120*5afab0e5SDag-Erling Smørgrav# This tag implements a quasi-intelligent brief description abbreviator that is 121*5afab0e5SDag-Erling Smørgrav# used to form the text in various listings. Each string in this list, if found 122*5afab0e5SDag-Erling Smørgrav# as the leading text of the brief description, will be stripped from the text 123*5afab0e5SDag-Erling Smørgrav# and the result, after processing the whole list, is used as the annotated 124*5afab0e5SDag-Erling Smørgrav# text. Otherwise, the brief description is used as-is. If left blank, the 125*5afab0e5SDag-Erling Smørgrav# following values are used ($name is automatically replaced with the name of 126*5afab0e5SDag-Erling Smørgrav# the entity):The $name class, The $name widget, The $name file, is, provides, 127*5afab0e5SDag-Erling Smørgrav# specifies, contains, represents, a, an and the. 128*5afab0e5SDag-Erling Smørgrav 129*5afab0e5SDag-Erling SmørgravABBREVIATE_BRIEF = 130*5afab0e5SDag-Erling Smørgrav 131*5afab0e5SDag-Erling Smørgrav# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 132*5afab0e5SDag-Erling Smørgrav# doxygen will generate a detailed section even if there is only a brief 133*5afab0e5SDag-Erling Smørgrav# description. 134*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 135*5afab0e5SDag-Erling Smørgrav 136*5afab0e5SDag-Erling SmørgravALWAYS_DETAILED_SEC = NO 137*5afab0e5SDag-Erling Smørgrav 138*5afab0e5SDag-Erling Smørgrav# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 139*5afab0e5SDag-Erling Smørgrav# inherited members of a class in the documentation of that class as if those 140*5afab0e5SDag-Erling Smørgrav# members were ordinary class members. Constructors, destructors and assignment 141*5afab0e5SDag-Erling Smørgrav# operators of the base classes will not be shown. 142*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 143*5afab0e5SDag-Erling Smørgrav 144*5afab0e5SDag-Erling SmørgravINLINE_INHERITED_MEMB = NO 145*5afab0e5SDag-Erling Smørgrav 146*5afab0e5SDag-Erling Smørgrav# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path 147*5afab0e5SDag-Erling Smørgrav# before files name in the file list and in the header files. If set to NO the 148*5afab0e5SDag-Erling Smørgrav# shortest path that makes the file name unique will be used 149*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 150*5afab0e5SDag-Erling Smørgrav 151*5afab0e5SDag-Erling SmørgravFULL_PATH_NAMES = YES 152*5afab0e5SDag-Erling Smørgrav 153*5afab0e5SDag-Erling Smørgrav# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. 154*5afab0e5SDag-Erling Smørgrav# Stripping is only done if one of the specified strings matches the left-hand 155*5afab0e5SDag-Erling Smørgrav# part of the path. The tag can be used to show relative paths in the file list. 156*5afab0e5SDag-Erling Smørgrav# If left blank the directory from which doxygen is run is used as the path to 157*5afab0e5SDag-Erling Smørgrav# strip. 158*5afab0e5SDag-Erling Smørgrav# 159*5afab0e5SDag-Erling Smørgrav# Note that you can specify absolute paths here, but also relative paths, which 160*5afab0e5SDag-Erling Smørgrav# will be relative from the directory where doxygen is started. 161*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag FULL_PATH_NAMES is set to YES. 162*5afab0e5SDag-Erling Smørgrav 163*5afab0e5SDag-Erling SmørgravSTRIP_FROM_PATH = 164*5afab0e5SDag-Erling Smørgrav 165*5afab0e5SDag-Erling Smørgrav# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the 166*5afab0e5SDag-Erling Smørgrav# path mentioned in the documentation of a class, which tells the reader which 167*5afab0e5SDag-Erling Smørgrav# header file to include in order to use a class. If left blank only the name of 168*5afab0e5SDag-Erling Smørgrav# the header file containing the class definition is used. Otherwise one should 169*5afab0e5SDag-Erling Smørgrav# specify the list of include paths that are normally passed to the compiler 170*5afab0e5SDag-Erling Smørgrav# using the -I flag. 171*5afab0e5SDag-Erling Smørgrav 172*5afab0e5SDag-Erling SmørgravSTRIP_FROM_INC_PATH = 173*5afab0e5SDag-Erling Smørgrav 174*5afab0e5SDag-Erling Smørgrav# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but 175*5afab0e5SDag-Erling Smørgrav# less readable) file names. This can be useful is your file systems doesn't 176*5afab0e5SDag-Erling Smørgrav# support long names like on DOS, Mac, or CD-ROM. 177*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 178*5afab0e5SDag-Erling Smørgrav 179*5afab0e5SDag-Erling SmørgravSHORT_NAMES = NO 180*5afab0e5SDag-Erling Smørgrav 181*5afab0e5SDag-Erling Smørgrav# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the 182*5afab0e5SDag-Erling Smørgrav# first line (until the first dot) of a Javadoc-style comment as the brief 183*5afab0e5SDag-Erling Smørgrav# description. If set to NO, the Javadoc-style will behave just like regular Qt- 184*5afab0e5SDag-Erling Smørgrav# style comments (thus requiring an explicit @brief command for a brief 185*5afab0e5SDag-Erling Smørgrav# description.) 186*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 187*5afab0e5SDag-Erling Smørgrav 188*5afab0e5SDag-Erling SmørgravJAVADOC_AUTOBRIEF = YES 189*5afab0e5SDag-Erling Smørgrav 190*5afab0e5SDag-Erling Smørgrav# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line 191*5afab0e5SDag-Erling Smørgrav# such as 192*5afab0e5SDag-Erling Smørgrav# /*************** 193*5afab0e5SDag-Erling Smørgrav# as being the beginning of a Javadoc-style comment "banner". If set to NO, the 194*5afab0e5SDag-Erling Smørgrav# Javadoc-style will behave just like regular comments and it will not be 195*5afab0e5SDag-Erling Smørgrav# interpreted by doxygen. 196*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 197*5afab0e5SDag-Erling Smørgrav 198*5afab0e5SDag-Erling SmørgravJAVADOC_BANNER = NO 199*5afab0e5SDag-Erling Smørgrav 200*5afab0e5SDag-Erling Smørgrav# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first 201*5afab0e5SDag-Erling Smørgrav# line (until the first dot) of a Qt-style comment as the brief description. If 202*5afab0e5SDag-Erling Smørgrav# set to NO, the Qt-style will behave just like regular Qt-style comments (thus 203*5afab0e5SDag-Erling Smørgrav# requiring an explicit \brief command for a brief description.) 204*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 205*5afab0e5SDag-Erling Smørgrav 206*5afab0e5SDag-Erling SmørgravQT_AUTOBRIEF = NO 207*5afab0e5SDag-Erling Smørgrav 208*5afab0e5SDag-Erling Smørgrav# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a 209*5afab0e5SDag-Erling Smørgrav# multi-line C++ special comment block (i.e. a block of //! or /// comments) as 210*5afab0e5SDag-Erling Smørgrav# a brief description. This used to be the default behavior. The new default is 211*5afab0e5SDag-Erling Smørgrav# to treat a multi-line C++ comment block as a detailed description. Set this 212*5afab0e5SDag-Erling Smørgrav# tag to YES if you prefer the old behavior instead. 213*5afab0e5SDag-Erling Smørgrav# 214*5afab0e5SDag-Erling Smørgrav# Note that setting this tag to YES also means that rational rose comments are 215*5afab0e5SDag-Erling Smørgrav# not recognized any more. 216*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 217*5afab0e5SDag-Erling Smørgrav 218*5afab0e5SDag-Erling SmørgravMULTILINE_CPP_IS_BRIEF = NO 219*5afab0e5SDag-Erling Smørgrav 220*5afab0e5SDag-Erling Smørgrav# By default Python docstrings are displayed as preformatted text and doxygen's 221*5afab0e5SDag-Erling Smørgrav# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the 222*5afab0e5SDag-Erling Smørgrav# doxygen's special commands can be used and the contents of the docstring 223*5afab0e5SDag-Erling Smørgrav# documentation blocks is shown as doxygen documentation. 224*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 225*5afab0e5SDag-Erling Smørgrav 226*5afab0e5SDag-Erling SmørgravPYTHON_DOCSTRING = YES 227*5afab0e5SDag-Erling Smørgrav 228*5afab0e5SDag-Erling Smørgrav# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the 229*5afab0e5SDag-Erling Smørgrav# documentation from any documented member that it re-implements. 230*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 231*5afab0e5SDag-Erling Smørgrav 232*5afab0e5SDag-Erling SmørgravINHERIT_DOCS = YES 233*5afab0e5SDag-Erling Smørgrav 234*5afab0e5SDag-Erling Smørgrav# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new 235*5afab0e5SDag-Erling Smørgrav# page for each member. If set to NO, the documentation of a member will be part 236*5afab0e5SDag-Erling Smørgrav# of the file/class/namespace that contains it. 237*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 238*5afab0e5SDag-Erling Smørgrav 239*5afab0e5SDag-Erling SmørgravSEPARATE_MEMBER_PAGES = NO 240*5afab0e5SDag-Erling Smørgrav 241*5afab0e5SDag-Erling Smørgrav# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen 242*5afab0e5SDag-Erling Smørgrav# uses this value to replace tabs by spaces in code fragments. 243*5afab0e5SDag-Erling Smørgrav# Minimum value: 1, maximum value: 16, default value: 4. 244*5afab0e5SDag-Erling Smørgrav 245*5afab0e5SDag-Erling SmørgravTAB_SIZE = 8 246*5afab0e5SDag-Erling Smørgrav 247*5afab0e5SDag-Erling Smørgrav# This tag can be used to specify a number of aliases that act as commands in 248*5afab0e5SDag-Erling Smørgrav# the documentation. An alias has the form: 249*5afab0e5SDag-Erling Smørgrav# name=value 250*5afab0e5SDag-Erling Smørgrav# For example adding 251*5afab0e5SDag-Erling Smørgrav# "sideeffect=@par Side Effects:\n" 252*5afab0e5SDag-Erling Smørgrav# will allow you to put the command \sideeffect (or @sideeffect) in the 253*5afab0e5SDag-Erling Smørgrav# documentation, which will result in a user-defined paragraph with heading 254*5afab0e5SDag-Erling Smørgrav# "Side Effects:". You can put \n's in the value part of an alias to insert 255*5afab0e5SDag-Erling Smørgrav# newlines (in the resulting output). You can put ^^ in the value part of an 256*5afab0e5SDag-Erling Smørgrav# alias to insert a newline as if a physical newline was in the original file. 257*5afab0e5SDag-Erling Smørgrav# When you need a literal { or } or , in the value part of an alias you have to 258*5afab0e5SDag-Erling Smørgrav# escape them by means of a backslash (\), this can lead to conflicts with the 259*5afab0e5SDag-Erling Smørgrav# commands \{ and \} for these it is advised to use the version @{ and @} or use 260*5afab0e5SDag-Erling Smørgrav# a double escape (\\{ and \\}) 261*5afab0e5SDag-Erling Smørgrav 262*5afab0e5SDag-Erling SmørgravALIASES = 263*5afab0e5SDag-Erling Smørgrav 264*5afab0e5SDag-Erling Smørgrav# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 265*5afab0e5SDag-Erling Smørgrav# only. Doxygen will then generate output that is more tailored for C. For 266*5afab0e5SDag-Erling Smørgrav# instance, some of the names that are used will be different. The list of all 267*5afab0e5SDag-Erling Smørgrav# members will be omitted, etc. 268*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 269*5afab0e5SDag-Erling Smørgrav 270*5afab0e5SDag-Erling SmørgravOPTIMIZE_OUTPUT_FOR_C = YES 271*5afab0e5SDag-Erling Smørgrav 272*5afab0e5SDag-Erling Smørgrav# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or 273*5afab0e5SDag-Erling Smørgrav# Python sources only. Doxygen will then generate output that is more tailored 274*5afab0e5SDag-Erling Smørgrav# for that language. For instance, namespaces will be presented as packages, 275*5afab0e5SDag-Erling Smørgrav# qualified scopes will look different, etc. 276*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 277*5afab0e5SDag-Erling Smørgrav 278*5afab0e5SDag-Erling SmørgravOPTIMIZE_OUTPUT_JAVA = NO 279*5afab0e5SDag-Erling Smørgrav 280*5afab0e5SDag-Erling Smørgrav# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran 281*5afab0e5SDag-Erling Smørgrav# sources. Doxygen will then generate output that is tailored for Fortran. 282*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 283*5afab0e5SDag-Erling Smørgrav 284*5afab0e5SDag-Erling SmørgravOPTIMIZE_FOR_FORTRAN = NO 285*5afab0e5SDag-Erling Smørgrav 286*5afab0e5SDag-Erling Smørgrav# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL 287*5afab0e5SDag-Erling Smørgrav# sources. Doxygen will then generate output that is tailored for VHDL. 288*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 289*5afab0e5SDag-Erling Smørgrav 290*5afab0e5SDag-Erling SmørgravOPTIMIZE_OUTPUT_VHDL = NO 291*5afab0e5SDag-Erling Smørgrav 292*5afab0e5SDag-Erling Smørgrav# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice 293*5afab0e5SDag-Erling Smørgrav# sources only. Doxygen will then generate output that is more tailored for that 294*5afab0e5SDag-Erling Smørgrav# language. For instance, namespaces will be presented as modules, types will be 295*5afab0e5SDag-Erling Smørgrav# separated into more groups, etc. 296*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 297*5afab0e5SDag-Erling Smørgrav 298*5afab0e5SDag-Erling SmørgravOPTIMIZE_OUTPUT_SLICE = NO 299*5afab0e5SDag-Erling Smørgrav 300*5afab0e5SDag-Erling Smørgrav# Doxygen selects the parser to use depending on the extension of the files it 301*5afab0e5SDag-Erling Smørgrav# parses. With this tag you can assign which parser to use for a given 302*5afab0e5SDag-Erling Smørgrav# extension. Doxygen has a built-in mapping, but you can override or extend it 303*5afab0e5SDag-Erling Smørgrav# using this tag. The format is ext=language, where ext is a file extension, and 304*5afab0e5SDag-Erling Smørgrav# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, 305*5afab0e5SDag-Erling Smørgrav# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, 306*5afab0e5SDag-Erling Smørgrav# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: 307*5afab0e5SDag-Erling Smørgrav# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser 308*5afab0e5SDag-Erling Smørgrav# tries to guess whether the code is fixed or free formatted code, this is the 309*5afab0e5SDag-Erling Smørgrav# default for Fortran type files). For instance to make doxygen treat .inc files 310*5afab0e5SDag-Erling Smørgrav# as Fortran files (default is PHP), and .f files as C (default is Fortran), 311*5afab0e5SDag-Erling Smørgrav# use: inc=Fortran f=C. 312*5afab0e5SDag-Erling Smørgrav# 313*5afab0e5SDag-Erling Smørgrav# Note: For files without extension you can use no_extension as a placeholder. 314*5afab0e5SDag-Erling Smørgrav# 315*5afab0e5SDag-Erling Smørgrav# Note that for custom extensions you also need to set FILE_PATTERNS otherwise 316*5afab0e5SDag-Erling Smørgrav# the files are not read by doxygen. When specifying no_extension you should add 317*5afab0e5SDag-Erling Smørgrav# * to the FILE_PATTERNS. 318*5afab0e5SDag-Erling Smørgrav# 319*5afab0e5SDag-Erling Smørgrav# Note see also the list of default file extension mappings. 320*5afab0e5SDag-Erling Smørgrav 321*5afab0e5SDag-Erling SmørgravEXTENSION_MAPPING = 322*5afab0e5SDag-Erling Smørgrav 323*5afab0e5SDag-Erling Smørgrav# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments 324*5afab0e5SDag-Erling Smørgrav# according to the Markdown format, which allows for more readable 325*5afab0e5SDag-Erling Smørgrav# documentation. See https://daringfireball.net/projects/markdown/ for details. 326*5afab0e5SDag-Erling Smørgrav# The output of markdown processing is further processed by doxygen, so you can 327*5afab0e5SDag-Erling Smørgrav# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in 328*5afab0e5SDag-Erling Smørgrav# case of backward compatibilities issues. 329*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 330*5afab0e5SDag-Erling Smørgrav 331*5afab0e5SDag-Erling SmørgravMARKDOWN_SUPPORT = YES 332*5afab0e5SDag-Erling Smørgrav 333*5afab0e5SDag-Erling Smørgrav# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up 334*5afab0e5SDag-Erling Smørgrav# to that level are automatically included in the table of contents, even if 335*5afab0e5SDag-Erling Smørgrav# they do not have an id attribute. 336*5afab0e5SDag-Erling Smørgrav# Note: This feature currently applies only to Markdown headings. 337*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 99, default value: 5. 338*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. 339*5afab0e5SDag-Erling Smørgrav 340*5afab0e5SDag-Erling SmørgravTOC_INCLUDE_HEADINGS = 5 341*5afab0e5SDag-Erling Smørgrav 342*5afab0e5SDag-Erling Smørgrav# When enabled doxygen tries to link words that correspond to documented 343*5afab0e5SDag-Erling Smørgrav# classes, or namespaces to their corresponding documentation. Such a link can 344*5afab0e5SDag-Erling Smørgrav# be prevented in individual cases by putting a % sign in front of the word or 345*5afab0e5SDag-Erling Smørgrav# globally by setting AUTOLINK_SUPPORT to NO. 346*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 347*5afab0e5SDag-Erling Smørgrav 348*5afab0e5SDag-Erling SmørgravAUTOLINK_SUPPORT = YES 349*5afab0e5SDag-Erling Smørgrav 350*5afab0e5SDag-Erling Smørgrav# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want 351*5afab0e5SDag-Erling Smørgrav# to include (a tag file for) the STL sources as input, then you should set this 352*5afab0e5SDag-Erling Smørgrav# tag to YES in order to let doxygen match functions declarations and 353*5afab0e5SDag-Erling Smørgrav# definitions whose arguments contain STL classes (e.g. func(std::string); 354*5afab0e5SDag-Erling Smørgrav# versus func(std::string) {}). This also make the inheritance and collaboration 355*5afab0e5SDag-Erling Smørgrav# diagrams that involve STL classes more complete and accurate. 356*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 357*5afab0e5SDag-Erling Smørgrav 358*5afab0e5SDag-Erling SmørgravBUILTIN_STL_SUPPORT = NO 359*5afab0e5SDag-Erling Smørgrav 360*5afab0e5SDag-Erling Smørgrav# If you use Microsoft's C++/CLI language, you should set this option to YES to 361*5afab0e5SDag-Erling Smørgrav# enable parsing support. 362*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 363*5afab0e5SDag-Erling Smørgrav 364*5afab0e5SDag-Erling SmørgravCPP_CLI_SUPPORT = NO 365*5afab0e5SDag-Erling Smørgrav 366*5afab0e5SDag-Erling Smørgrav# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: 367*5afab0e5SDag-Erling Smørgrav# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen 368*5afab0e5SDag-Erling Smørgrav# will parse them like normal C++ but will assume all classes use public instead 369*5afab0e5SDag-Erling Smørgrav# of private inheritance when no explicit protection keyword is present. 370*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 371*5afab0e5SDag-Erling Smørgrav 372*5afab0e5SDag-Erling SmørgravSIP_SUPPORT = NO 373*5afab0e5SDag-Erling Smørgrav 374*5afab0e5SDag-Erling Smørgrav# For Microsoft's IDL there are propget and propput attributes to indicate 375*5afab0e5SDag-Erling Smørgrav# getter and setter methods for a property. Setting this option to YES will make 376*5afab0e5SDag-Erling Smørgrav# doxygen to replace the get and set methods by a property in the documentation. 377*5afab0e5SDag-Erling Smørgrav# This will only work if the methods are indeed getting or setting a simple 378*5afab0e5SDag-Erling Smørgrav# type. If this is not the case, or you want to show the methods anyway, you 379*5afab0e5SDag-Erling Smørgrav# should set this option to NO. 380*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 381*5afab0e5SDag-Erling Smørgrav 382*5afab0e5SDag-Erling SmørgravIDL_PROPERTY_SUPPORT = YES 383*5afab0e5SDag-Erling Smørgrav 384*5afab0e5SDag-Erling Smørgrav# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 385*5afab0e5SDag-Erling Smørgrav# tag is set to YES then doxygen will reuse the documentation of the first 386*5afab0e5SDag-Erling Smørgrav# member in the group (if any) for the other members of the group. By default 387*5afab0e5SDag-Erling Smørgrav# all members of a group must be documented explicitly. 388*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 389*5afab0e5SDag-Erling Smørgrav 390*5afab0e5SDag-Erling SmørgravDISTRIBUTE_GROUP_DOC = NO 391*5afab0e5SDag-Erling Smørgrav 392*5afab0e5SDag-Erling Smørgrav# If one adds a struct or class to a group and this option is enabled, then also 393*5afab0e5SDag-Erling Smørgrav# any nested class or struct is added to the same group. By default this option 394*5afab0e5SDag-Erling Smørgrav# is disabled and one has to add nested compounds explicitly via \ingroup. 395*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 396*5afab0e5SDag-Erling Smørgrav 397*5afab0e5SDag-Erling SmørgravGROUP_NESTED_COMPOUNDS = NO 398*5afab0e5SDag-Erling Smørgrav 399*5afab0e5SDag-Erling Smørgrav# Set the SUBGROUPING tag to YES to allow class member groups of the same type 400*5afab0e5SDag-Erling Smørgrav# (for instance a group of public functions) to be put as a subgroup of that 401*5afab0e5SDag-Erling Smørgrav# type (e.g. under the Public Functions section). Set it to NO to prevent 402*5afab0e5SDag-Erling Smørgrav# subgrouping. Alternatively, this can be done per class using the 403*5afab0e5SDag-Erling Smørgrav# \nosubgrouping command. 404*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 405*5afab0e5SDag-Erling Smørgrav 406*5afab0e5SDag-Erling SmørgravSUBGROUPING = YES 407*5afab0e5SDag-Erling Smørgrav 408*5afab0e5SDag-Erling Smørgrav# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions 409*5afab0e5SDag-Erling Smørgrav# are shown inside the group in which they are included (e.g. using \ingroup) 410*5afab0e5SDag-Erling Smørgrav# instead of on a separate page (for HTML and Man pages) or section (for LaTeX 411*5afab0e5SDag-Erling Smørgrav# and RTF). 412*5afab0e5SDag-Erling Smørgrav# 413*5afab0e5SDag-Erling Smørgrav# Note that this feature does not work in combination with 414*5afab0e5SDag-Erling Smørgrav# SEPARATE_MEMBER_PAGES. 415*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 416*5afab0e5SDag-Erling Smørgrav 417*5afab0e5SDag-Erling SmørgravINLINE_GROUPED_CLASSES = NO 418*5afab0e5SDag-Erling Smørgrav 419*5afab0e5SDag-Erling Smørgrav# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions 420*5afab0e5SDag-Erling Smørgrav# with only public data fields or simple typedef fields will be shown inline in 421*5afab0e5SDag-Erling Smørgrav# the documentation of the scope in which they are defined (i.e. file, 422*5afab0e5SDag-Erling Smørgrav# namespace, or group documentation), provided this scope is documented. If set 423*5afab0e5SDag-Erling Smørgrav# to NO, structs, classes, and unions are shown on a separate page (for HTML and 424*5afab0e5SDag-Erling Smørgrav# Man pages) or section (for LaTeX and RTF). 425*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 426*5afab0e5SDag-Erling Smørgrav 427*5afab0e5SDag-Erling SmørgravINLINE_SIMPLE_STRUCTS = NO 428*5afab0e5SDag-Erling Smørgrav 429*5afab0e5SDag-Erling Smørgrav# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or 430*5afab0e5SDag-Erling Smørgrav# enum is documented as struct, union, or enum with the name of the typedef. So 431*5afab0e5SDag-Erling Smørgrav# typedef struct TypeS {} TypeT, will appear in the documentation as a struct 432*5afab0e5SDag-Erling Smørgrav# with name TypeT. When disabled the typedef will appear as a member of a file, 433*5afab0e5SDag-Erling Smørgrav# namespace, or class. And the struct will be named TypeS. This can typically be 434*5afab0e5SDag-Erling Smørgrav# useful for C code in case the coding convention dictates that all compound 435*5afab0e5SDag-Erling Smørgrav# types are typedef'ed and only the typedef is referenced, never the tag name. 436*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 437*5afab0e5SDag-Erling Smørgrav 438*5afab0e5SDag-Erling SmørgravTYPEDEF_HIDES_STRUCT = NO 439*5afab0e5SDag-Erling Smørgrav 440*5afab0e5SDag-Erling Smørgrav# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 441*5afab0e5SDag-Erling Smørgrav# cache is used to resolve symbols given their name and scope. Since this can be 442*5afab0e5SDag-Erling Smørgrav# an expensive process and often the same symbol appears multiple times in the 443*5afab0e5SDag-Erling Smørgrav# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small 444*5afab0e5SDag-Erling Smørgrav# doxygen will become slower. If the cache is too large, memory is wasted. The 445*5afab0e5SDag-Erling Smørgrav# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 446*5afab0e5SDag-Erling Smørgrav# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 447*5afab0e5SDag-Erling Smørgrav# symbols. At the end of a run doxygen will report the cache usage and suggest 448*5afab0e5SDag-Erling Smørgrav# the optimal cache size from a speed point of view. 449*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 9, default value: 0. 450*5afab0e5SDag-Erling Smørgrav 451*5afab0e5SDag-Erling SmørgravLOOKUP_CACHE_SIZE = 0 452*5afab0e5SDag-Erling Smørgrav 453*5afab0e5SDag-Erling Smørgrav# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use 454*5afab0e5SDag-Erling Smørgrav# during processing. When set to 0 doxygen will based this on the number of 455*5afab0e5SDag-Erling Smørgrav# cores available in the system. You can set it explicitly to a value larger 456*5afab0e5SDag-Erling Smørgrav# than 0 to get more control over the balance between CPU load and processing 457*5afab0e5SDag-Erling Smørgrav# speed. At this moment only the input processing can be done using multiple 458*5afab0e5SDag-Erling Smørgrav# threads. Since this is still an experimental feature the default is set to 1, 459*5afab0e5SDag-Erling Smørgrav# which efficively disables parallel processing. Please report any issues you 460*5afab0e5SDag-Erling Smørgrav# encounter. Generating dot graphs in parallel is controlled by the 461*5afab0e5SDag-Erling Smørgrav# DOT_NUM_THREADS setting. 462*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 32, default value: 1. 463*5afab0e5SDag-Erling Smørgrav 464*5afab0e5SDag-Erling SmørgravNUM_PROC_THREADS = 1 465*5afab0e5SDag-Erling Smørgrav 466*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 467*5afab0e5SDag-Erling Smørgrav# Build related configuration options 468*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 469*5afab0e5SDag-Erling Smørgrav 470*5afab0e5SDag-Erling Smørgrav# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in 471*5afab0e5SDag-Erling Smørgrav# documentation are documented, even if no documentation was available. Private 472*5afab0e5SDag-Erling Smørgrav# class members and static file members will be hidden unless the 473*5afab0e5SDag-Erling Smørgrav# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. 474*5afab0e5SDag-Erling Smørgrav# Note: This will also disable the warnings about undocumented members that are 475*5afab0e5SDag-Erling Smørgrav# normally produced when WARNINGS is set to YES. 476*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 477*5afab0e5SDag-Erling Smørgrav 478*5afab0e5SDag-Erling SmørgravEXTRACT_ALL = YES 479*5afab0e5SDag-Erling Smørgrav 480*5afab0e5SDag-Erling Smørgrav# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will 481*5afab0e5SDag-Erling Smørgrav# be included in the documentation. 482*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 483*5afab0e5SDag-Erling Smørgrav 484*5afab0e5SDag-Erling SmørgravEXTRACT_PRIVATE = NO 485*5afab0e5SDag-Erling Smørgrav 486*5afab0e5SDag-Erling Smørgrav# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual 487*5afab0e5SDag-Erling Smørgrav# methods of a class will be included in the documentation. 488*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 489*5afab0e5SDag-Erling Smørgrav 490*5afab0e5SDag-Erling SmørgravEXTRACT_PRIV_VIRTUAL = NO 491*5afab0e5SDag-Erling Smørgrav 492*5afab0e5SDag-Erling Smørgrav# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal 493*5afab0e5SDag-Erling Smørgrav# scope will be included in the documentation. 494*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 495*5afab0e5SDag-Erling Smørgrav 496*5afab0e5SDag-Erling SmørgravEXTRACT_PACKAGE = NO 497*5afab0e5SDag-Erling Smørgrav 498*5afab0e5SDag-Erling Smørgrav# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be 499*5afab0e5SDag-Erling Smørgrav# included in the documentation. 500*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 501*5afab0e5SDag-Erling Smørgrav 502*5afab0e5SDag-Erling SmørgravEXTRACT_STATIC = NO 503*5afab0e5SDag-Erling Smørgrav 504*5afab0e5SDag-Erling Smørgrav# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined 505*5afab0e5SDag-Erling Smørgrav# locally in source files will be included in the documentation. If set to NO, 506*5afab0e5SDag-Erling Smørgrav# only classes defined in header files are included. Does not have any effect 507*5afab0e5SDag-Erling Smørgrav# for Java sources. 508*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 509*5afab0e5SDag-Erling Smørgrav 510*5afab0e5SDag-Erling SmørgravEXTRACT_LOCAL_CLASSES = YES 511*5afab0e5SDag-Erling Smørgrav 512*5afab0e5SDag-Erling Smørgrav# This flag is only useful for Objective-C code. If set to YES, local methods, 513*5afab0e5SDag-Erling Smørgrav# which are defined in the implementation section but not in the interface are 514*5afab0e5SDag-Erling Smørgrav# included in the documentation. If set to NO, only methods in the interface are 515*5afab0e5SDag-Erling Smørgrav# included. 516*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 517*5afab0e5SDag-Erling Smørgrav 518*5afab0e5SDag-Erling SmørgravEXTRACT_LOCAL_METHODS = NO 519*5afab0e5SDag-Erling Smørgrav 520*5afab0e5SDag-Erling Smørgrav# If this flag is set to YES, the members of anonymous namespaces will be 521*5afab0e5SDag-Erling Smørgrav# extracted and appear in the documentation as a namespace called 522*5afab0e5SDag-Erling Smørgrav# 'anonymous_namespace{file}', where file will be replaced with the base name of 523*5afab0e5SDag-Erling Smørgrav# the file that contains the anonymous namespace. By default anonymous namespace 524*5afab0e5SDag-Erling Smørgrav# are hidden. 525*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 526*5afab0e5SDag-Erling Smørgrav 527*5afab0e5SDag-Erling SmørgravEXTRACT_ANON_NSPACES = NO 528*5afab0e5SDag-Erling Smørgrav 529*5afab0e5SDag-Erling Smørgrav# If this flag is set to YES, the name of an unnamed parameter in a declaration 530*5afab0e5SDag-Erling Smørgrav# will be determined by the corresponding definition. By default unnamed 531*5afab0e5SDag-Erling Smørgrav# parameters remain unnamed in the output. 532*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 533*5afab0e5SDag-Erling Smørgrav 534*5afab0e5SDag-Erling SmørgravRESOLVE_UNNAMED_PARAMS = YES 535*5afab0e5SDag-Erling Smørgrav 536*5afab0e5SDag-Erling Smørgrav# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all 537*5afab0e5SDag-Erling Smørgrav# undocumented members inside documented classes or files. If set to NO these 538*5afab0e5SDag-Erling Smørgrav# members will be included in the various overviews, but no documentation 539*5afab0e5SDag-Erling Smørgrav# section is generated. This option has no effect if EXTRACT_ALL is enabled. 540*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 541*5afab0e5SDag-Erling Smørgrav 542*5afab0e5SDag-Erling SmørgravHIDE_UNDOC_MEMBERS = NO 543*5afab0e5SDag-Erling Smørgrav 544*5afab0e5SDag-Erling Smørgrav# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all 545*5afab0e5SDag-Erling Smørgrav# undocumented classes that are normally visible in the class hierarchy. If set 546*5afab0e5SDag-Erling Smørgrav# to NO, these classes will be included in the various overviews. This option 547*5afab0e5SDag-Erling Smørgrav# has no effect if EXTRACT_ALL is enabled. 548*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 549*5afab0e5SDag-Erling Smørgrav 550*5afab0e5SDag-Erling SmørgravHIDE_UNDOC_CLASSES = NO 551*5afab0e5SDag-Erling Smørgrav 552*5afab0e5SDag-Erling Smørgrav# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend 553*5afab0e5SDag-Erling Smørgrav# declarations. If set to NO, these declarations will be included in the 554*5afab0e5SDag-Erling Smørgrav# documentation. 555*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 556*5afab0e5SDag-Erling Smørgrav 557*5afab0e5SDag-Erling SmørgravHIDE_FRIEND_COMPOUNDS = NO 558*5afab0e5SDag-Erling Smørgrav 559*5afab0e5SDag-Erling Smørgrav# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any 560*5afab0e5SDag-Erling Smørgrav# documentation blocks found inside the body of a function. If set to NO, these 561*5afab0e5SDag-Erling Smørgrav# blocks will be appended to the function's detailed documentation block. 562*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 563*5afab0e5SDag-Erling Smørgrav 564*5afab0e5SDag-Erling SmørgravHIDE_IN_BODY_DOCS = NO 565*5afab0e5SDag-Erling Smørgrav 566*5afab0e5SDag-Erling Smørgrav# The INTERNAL_DOCS tag determines if documentation that is typed after a 567*5afab0e5SDag-Erling Smørgrav# \internal command is included. If the tag is set to NO then the documentation 568*5afab0e5SDag-Erling Smørgrav# will be excluded. Set it to YES to include the internal documentation. 569*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 570*5afab0e5SDag-Erling Smørgrav 571*5afab0e5SDag-Erling SmørgravINTERNAL_DOCS = NO 572*5afab0e5SDag-Erling Smørgrav 573*5afab0e5SDag-Erling Smørgrav# With the correct setting of option CASE_SENSE_NAMES doxygen will better be 574*5afab0e5SDag-Erling Smørgrav# able to match the capabilities of the underlying filesystem. In case the 575*5afab0e5SDag-Erling Smørgrav# filesystem is case sensitive (i.e. it supports files in the same directory 576*5afab0e5SDag-Erling Smørgrav# whose names only differ in casing), the option must be set to YES to properly 577*5afab0e5SDag-Erling Smørgrav# deal with such files in case they appear in the input. For filesystems that 578*5afab0e5SDag-Erling Smørgrav# are not case sensitive the option should be be set to NO to properly deal with 579*5afab0e5SDag-Erling Smørgrav# output files written for symbols that only differ in casing, such as for two 580*5afab0e5SDag-Erling Smørgrav# classes, one named CLASS and the other named Class, and to also support 581*5afab0e5SDag-Erling Smørgrav# references to files without having to specify the exact matching casing. On 582*5afab0e5SDag-Erling Smørgrav# Windows (including Cygwin) and MacOS, users should typically set this option 583*5afab0e5SDag-Erling Smørgrav# to NO, whereas on Linux or other Unix flavors it should typically be set to 584*5afab0e5SDag-Erling Smørgrav# YES. 585*5afab0e5SDag-Erling Smørgrav# The default value is: system dependent. 586*5afab0e5SDag-Erling Smørgrav 587*5afab0e5SDag-Erling SmørgravCASE_SENSE_NAMES = YES 588*5afab0e5SDag-Erling Smørgrav 589*5afab0e5SDag-Erling Smørgrav# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with 590*5afab0e5SDag-Erling Smørgrav# their full class and namespace scopes in the documentation. If set to YES, the 591*5afab0e5SDag-Erling Smørgrav# scope will be hidden. 592*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 593*5afab0e5SDag-Erling Smørgrav 594*5afab0e5SDag-Erling SmørgravHIDE_SCOPE_NAMES = NO 595*5afab0e5SDag-Erling Smørgrav 596*5afab0e5SDag-Erling Smørgrav# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will 597*5afab0e5SDag-Erling Smørgrav# append additional text to a page's title, such as Class Reference. If set to 598*5afab0e5SDag-Erling Smørgrav# YES the compound reference will be hidden. 599*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 600*5afab0e5SDag-Erling Smørgrav 601*5afab0e5SDag-Erling SmørgravHIDE_COMPOUND_REFERENCE= NO 602*5afab0e5SDag-Erling Smørgrav 603*5afab0e5SDag-Erling Smørgrav# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of 604*5afab0e5SDag-Erling Smørgrav# the files that are included by a file in the documentation of that file. 605*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 606*5afab0e5SDag-Erling Smørgrav 607*5afab0e5SDag-Erling SmørgravSHOW_INCLUDE_FILES = NO 608*5afab0e5SDag-Erling Smørgrav 609*5afab0e5SDag-Erling Smørgrav# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each 610*5afab0e5SDag-Erling Smørgrav# grouped member an include statement to the documentation, telling the reader 611*5afab0e5SDag-Erling Smørgrav# which file to include in order to use the member. 612*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 613*5afab0e5SDag-Erling Smørgrav 614*5afab0e5SDag-Erling SmørgravSHOW_GROUPED_MEMB_INC = NO 615*5afab0e5SDag-Erling Smørgrav 616*5afab0e5SDag-Erling Smørgrav# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include 617*5afab0e5SDag-Erling Smørgrav# files with double quotes in the documentation rather than with sharp brackets. 618*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 619*5afab0e5SDag-Erling Smørgrav 620*5afab0e5SDag-Erling SmørgravFORCE_LOCAL_INCLUDES = NO 621*5afab0e5SDag-Erling Smørgrav 622*5afab0e5SDag-Erling Smørgrav# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the 623*5afab0e5SDag-Erling Smørgrav# documentation for inline members. 624*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 625*5afab0e5SDag-Erling Smørgrav 626*5afab0e5SDag-Erling SmørgravINLINE_INFO = YES 627*5afab0e5SDag-Erling Smørgrav 628*5afab0e5SDag-Erling Smørgrav# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the 629*5afab0e5SDag-Erling Smørgrav# (detailed) documentation of file and class members alphabetically by member 630*5afab0e5SDag-Erling Smørgrav# name. If set to NO, the members will appear in declaration order. 631*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 632*5afab0e5SDag-Erling Smørgrav 633*5afab0e5SDag-Erling SmørgravSORT_MEMBER_DOCS = NO 634*5afab0e5SDag-Erling Smørgrav 635*5afab0e5SDag-Erling Smørgrav# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief 636*5afab0e5SDag-Erling Smørgrav# descriptions of file, namespace and class members alphabetically by member 637*5afab0e5SDag-Erling Smørgrav# name. If set to NO, the members will appear in declaration order. Note that 638*5afab0e5SDag-Erling Smørgrav# this will also influence the order of the classes in the class list. 639*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 640*5afab0e5SDag-Erling Smørgrav 641*5afab0e5SDag-Erling SmørgravSORT_BRIEF_DOCS = NO 642*5afab0e5SDag-Erling Smørgrav 643*5afab0e5SDag-Erling Smørgrav# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the 644*5afab0e5SDag-Erling Smørgrav# (brief and detailed) documentation of class members so that constructors and 645*5afab0e5SDag-Erling Smørgrav# destructors are listed first. If set to NO the constructors will appear in the 646*5afab0e5SDag-Erling Smørgrav# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. 647*5afab0e5SDag-Erling Smørgrav# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief 648*5afab0e5SDag-Erling Smørgrav# member documentation. 649*5afab0e5SDag-Erling Smørgrav# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting 650*5afab0e5SDag-Erling Smørgrav# detailed member documentation. 651*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 652*5afab0e5SDag-Erling Smørgrav 653*5afab0e5SDag-Erling SmørgravSORT_MEMBERS_CTORS_1ST = NO 654*5afab0e5SDag-Erling Smørgrav 655*5afab0e5SDag-Erling Smørgrav# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy 656*5afab0e5SDag-Erling Smørgrav# of group names into alphabetical order. If set to NO the group names will 657*5afab0e5SDag-Erling Smørgrav# appear in their defined order. 658*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 659*5afab0e5SDag-Erling Smørgrav 660*5afab0e5SDag-Erling SmørgravSORT_GROUP_NAMES = NO 661*5afab0e5SDag-Erling Smørgrav 662*5afab0e5SDag-Erling Smørgrav# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by 663*5afab0e5SDag-Erling Smørgrav# fully-qualified names, including namespaces. If set to NO, the class list will 664*5afab0e5SDag-Erling Smørgrav# be sorted only by class name, not including the namespace part. 665*5afab0e5SDag-Erling Smørgrav# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 666*5afab0e5SDag-Erling Smørgrav# Note: This option applies only to the class list, not to the alphabetical 667*5afab0e5SDag-Erling Smørgrav# list. 668*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 669*5afab0e5SDag-Erling Smørgrav 670*5afab0e5SDag-Erling SmørgravSORT_BY_SCOPE_NAME = NO 671*5afab0e5SDag-Erling Smørgrav 672*5afab0e5SDag-Erling Smørgrav# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper 673*5afab0e5SDag-Erling Smørgrav# type resolution of all parameters of a function it will reject a match between 674*5afab0e5SDag-Erling Smørgrav# the prototype and the implementation of a member function even if there is 675*5afab0e5SDag-Erling Smørgrav# only one candidate or it is obvious which candidate to choose by doing a 676*5afab0e5SDag-Erling Smørgrav# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still 677*5afab0e5SDag-Erling Smørgrav# accept a match between prototype and implementation in such cases. 678*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 679*5afab0e5SDag-Erling Smørgrav 680*5afab0e5SDag-Erling SmørgravSTRICT_PROTO_MATCHING = NO 681*5afab0e5SDag-Erling Smørgrav 682*5afab0e5SDag-Erling Smørgrav# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo 683*5afab0e5SDag-Erling Smørgrav# list. This list is created by putting \todo commands in the documentation. 684*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 685*5afab0e5SDag-Erling Smørgrav 686*5afab0e5SDag-Erling SmørgravGENERATE_TODOLIST = YES 687*5afab0e5SDag-Erling Smørgrav 688*5afab0e5SDag-Erling Smørgrav# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test 689*5afab0e5SDag-Erling Smørgrav# list. This list is created by putting \test commands in the documentation. 690*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 691*5afab0e5SDag-Erling Smørgrav 692*5afab0e5SDag-Erling SmørgravGENERATE_TESTLIST = YES 693*5afab0e5SDag-Erling Smørgrav 694*5afab0e5SDag-Erling Smørgrav# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug 695*5afab0e5SDag-Erling Smørgrav# list. This list is created by putting \bug commands in the documentation. 696*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 697*5afab0e5SDag-Erling Smørgrav 698*5afab0e5SDag-Erling SmørgravGENERATE_BUGLIST = YES 699*5afab0e5SDag-Erling Smørgrav 700*5afab0e5SDag-Erling Smørgrav# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) 701*5afab0e5SDag-Erling Smørgrav# the deprecated list. This list is created by putting \deprecated commands in 702*5afab0e5SDag-Erling Smørgrav# the documentation. 703*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 704*5afab0e5SDag-Erling Smørgrav 705*5afab0e5SDag-Erling SmørgravGENERATE_DEPRECATEDLIST= YES 706*5afab0e5SDag-Erling Smørgrav 707*5afab0e5SDag-Erling Smørgrav# The ENABLED_SECTIONS tag can be used to enable conditional documentation 708*5afab0e5SDag-Erling Smørgrav# sections, marked by \if <section_label> ... \endif and \cond <section_label> 709*5afab0e5SDag-Erling Smørgrav# ... \endcond blocks. 710*5afab0e5SDag-Erling Smørgrav 711*5afab0e5SDag-Erling SmørgravENABLED_SECTIONS = 712*5afab0e5SDag-Erling Smørgrav 713*5afab0e5SDag-Erling Smørgrav# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the 714*5afab0e5SDag-Erling Smørgrav# initial value of a variable or macro / define can have for it to appear in the 715*5afab0e5SDag-Erling Smørgrav# documentation. If the initializer consists of more lines than specified here 716*5afab0e5SDag-Erling Smørgrav# it will be hidden. Use a value of 0 to hide initializers completely. The 717*5afab0e5SDag-Erling Smørgrav# appearance of the value of individual variables and macros / defines can be 718*5afab0e5SDag-Erling Smørgrav# controlled using \showinitializer or \hideinitializer command in the 719*5afab0e5SDag-Erling Smørgrav# documentation regardless of this setting. 720*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 10000, default value: 30. 721*5afab0e5SDag-Erling Smørgrav 722*5afab0e5SDag-Erling SmørgravMAX_INITIALIZER_LINES = 30 723*5afab0e5SDag-Erling Smørgrav 724*5afab0e5SDag-Erling Smørgrav# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at 725*5afab0e5SDag-Erling Smørgrav# the bottom of the documentation of classes and structs. If set to YES, the 726*5afab0e5SDag-Erling Smørgrav# list will mention the files that were used to generate the documentation. 727*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 728*5afab0e5SDag-Erling Smørgrav 729*5afab0e5SDag-Erling SmørgravSHOW_USED_FILES = NO 730*5afab0e5SDag-Erling Smørgrav 731*5afab0e5SDag-Erling Smørgrav# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This 732*5afab0e5SDag-Erling Smørgrav# will remove the Files entry from the Quick Index and from the Folder Tree View 733*5afab0e5SDag-Erling Smørgrav# (if specified). 734*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 735*5afab0e5SDag-Erling Smørgrav 736*5afab0e5SDag-Erling SmørgravSHOW_FILES = YES 737*5afab0e5SDag-Erling Smørgrav 738*5afab0e5SDag-Erling Smørgrav# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces 739*5afab0e5SDag-Erling Smørgrav# page. This will remove the Namespaces entry from the Quick Index and from the 740*5afab0e5SDag-Erling Smørgrav# Folder Tree View (if specified). 741*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 742*5afab0e5SDag-Erling Smørgrav 743*5afab0e5SDag-Erling SmørgravSHOW_NAMESPACES = YES 744*5afab0e5SDag-Erling Smørgrav 745*5afab0e5SDag-Erling Smørgrav# The FILE_VERSION_FILTER tag can be used to specify a program or script that 746*5afab0e5SDag-Erling Smørgrav# doxygen should invoke to get the current version for each file (typically from 747*5afab0e5SDag-Erling Smørgrav# the version control system). Doxygen will invoke the program by executing (via 748*5afab0e5SDag-Erling Smørgrav# popen()) the command command input-file, where command is the value of the 749*5afab0e5SDag-Erling Smørgrav# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided 750*5afab0e5SDag-Erling Smørgrav# by doxygen. Whatever the program writes to standard output is used as the file 751*5afab0e5SDag-Erling Smørgrav# version. For an example see the documentation. 752*5afab0e5SDag-Erling Smørgrav 753*5afab0e5SDag-Erling SmørgravFILE_VERSION_FILTER = 754*5afab0e5SDag-Erling Smørgrav 755*5afab0e5SDag-Erling Smørgrav# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed 756*5afab0e5SDag-Erling Smørgrav# by doxygen. The layout file controls the global structure of the generated 757*5afab0e5SDag-Erling Smørgrav# output files in an output format independent way. To create the layout file 758*5afab0e5SDag-Erling Smørgrav# that represents doxygen's defaults, run doxygen with the -l option. You can 759*5afab0e5SDag-Erling Smørgrav# optionally specify a file name after the option, if omitted DoxygenLayout.xml 760*5afab0e5SDag-Erling Smørgrav# will be used as the name of the layout file. 761*5afab0e5SDag-Erling Smørgrav# 762*5afab0e5SDag-Erling Smørgrav# Note that if you run doxygen from a directory containing a file called 763*5afab0e5SDag-Erling Smørgrav# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE 764*5afab0e5SDag-Erling Smørgrav# tag is left empty. 765*5afab0e5SDag-Erling Smørgrav 766*5afab0e5SDag-Erling SmørgravLAYOUT_FILE = 767*5afab0e5SDag-Erling Smørgrav 768*5afab0e5SDag-Erling Smørgrav# The CITE_BIB_FILES tag can be used to specify one or more bib files containing 769*5afab0e5SDag-Erling Smørgrav# the reference definitions. This must be a list of .bib files. The .bib 770*5afab0e5SDag-Erling Smørgrav# extension is automatically appended if omitted. This requires the bibtex tool 771*5afab0e5SDag-Erling Smørgrav# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. 772*5afab0e5SDag-Erling Smørgrav# For LaTeX the style of the bibliography can be controlled using 773*5afab0e5SDag-Erling Smørgrav# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the 774*5afab0e5SDag-Erling Smørgrav# search path. See also \cite for info how to create references. 775*5afab0e5SDag-Erling Smørgrav 776*5afab0e5SDag-Erling SmørgravCITE_BIB_FILES = 777*5afab0e5SDag-Erling Smørgrav 778*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 779*5afab0e5SDag-Erling Smørgrav# Configuration options related to warning and progress messages 780*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 781*5afab0e5SDag-Erling Smørgrav 782*5afab0e5SDag-Erling Smørgrav# The QUIET tag can be used to turn on/off the messages that are generated to 783*5afab0e5SDag-Erling Smørgrav# standard output by doxygen. If QUIET is set to YES this implies that the 784*5afab0e5SDag-Erling Smørgrav# messages are off. 785*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 786*5afab0e5SDag-Erling Smørgrav 787*5afab0e5SDag-Erling SmørgravQUIET = YES 788*5afab0e5SDag-Erling Smørgrav 789*5afab0e5SDag-Erling Smørgrav# The WARNINGS tag can be used to turn on/off the warning messages that are 790*5afab0e5SDag-Erling Smørgrav# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES 791*5afab0e5SDag-Erling Smørgrav# this implies that the warnings are on. 792*5afab0e5SDag-Erling Smørgrav# 793*5afab0e5SDag-Erling Smørgrav# Tip: Turn warnings on while writing the documentation. 794*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 795*5afab0e5SDag-Erling Smørgrav 796*5afab0e5SDag-Erling SmørgravWARNINGS = YES 797*5afab0e5SDag-Erling Smørgrav 798*5afab0e5SDag-Erling Smørgrav# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate 799*5afab0e5SDag-Erling Smørgrav# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag 800*5afab0e5SDag-Erling Smørgrav# will automatically be disabled. 801*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 802*5afab0e5SDag-Erling Smørgrav 803*5afab0e5SDag-Erling SmørgravWARN_IF_UNDOCUMENTED = YES 804*5afab0e5SDag-Erling Smørgrav 805*5afab0e5SDag-Erling Smørgrav# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for 806*5afab0e5SDag-Erling Smørgrav# potential errors in the documentation, such as not documenting some parameters 807*5afab0e5SDag-Erling Smørgrav# in a documented function, or documenting parameters that don't exist or using 808*5afab0e5SDag-Erling Smørgrav# markup commands wrongly. 809*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 810*5afab0e5SDag-Erling Smørgrav 811*5afab0e5SDag-Erling SmørgravWARN_IF_DOC_ERROR = YES 812*5afab0e5SDag-Erling Smørgrav 813*5afab0e5SDag-Erling Smørgrav# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that 814*5afab0e5SDag-Erling Smørgrav# are documented, but have no documentation for their parameters or return 815*5afab0e5SDag-Erling Smørgrav# value. If set to NO, doxygen will only warn about wrong or incomplete 816*5afab0e5SDag-Erling Smørgrav# parameter documentation, but not about the absence of documentation. If 817*5afab0e5SDag-Erling Smørgrav# EXTRACT_ALL is set to YES then this flag will automatically be disabled. 818*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 819*5afab0e5SDag-Erling Smørgrav 820*5afab0e5SDag-Erling SmørgravWARN_NO_PARAMDOC = NO 821*5afab0e5SDag-Erling Smørgrav 822*5afab0e5SDag-Erling Smørgrav# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when 823*5afab0e5SDag-Erling Smørgrav# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS 824*5afab0e5SDag-Erling Smørgrav# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but 825*5afab0e5SDag-Erling Smørgrav# at the end of the doxygen process doxygen will return with a non-zero status. 826*5afab0e5SDag-Erling Smørgrav# Possible values are: NO, YES and FAIL_ON_WARNINGS. 827*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 828*5afab0e5SDag-Erling Smørgrav 829*5afab0e5SDag-Erling SmørgravWARN_AS_ERROR = NO 830*5afab0e5SDag-Erling Smørgrav 831*5afab0e5SDag-Erling Smørgrav# The WARN_FORMAT tag determines the format of the warning messages that doxygen 832*5afab0e5SDag-Erling Smørgrav# can produce. The string should contain the $file, $line, and $text tags, which 833*5afab0e5SDag-Erling Smørgrav# will be replaced by the file and line number from which the warning originated 834*5afab0e5SDag-Erling Smørgrav# and the warning text. Optionally the format may contain $version, which will 835*5afab0e5SDag-Erling Smørgrav# be replaced by the version of the file (if it could be obtained via 836*5afab0e5SDag-Erling Smørgrav# FILE_VERSION_FILTER) 837*5afab0e5SDag-Erling Smørgrav# The default value is: $file:$line: $text. 838*5afab0e5SDag-Erling Smørgrav 839*5afab0e5SDag-Erling SmørgravWARN_FORMAT = "doxygen: $file:$line: $text" 840*5afab0e5SDag-Erling Smørgrav 841*5afab0e5SDag-Erling Smørgrav# The WARN_LOGFILE tag can be used to specify a file to which warning and error 842*5afab0e5SDag-Erling Smørgrav# messages should be written. If left blank the output is written to standard 843*5afab0e5SDag-Erling Smørgrav# error (stderr). 844*5afab0e5SDag-Erling Smørgrav 845*5afab0e5SDag-Erling SmørgravWARN_LOGFILE = 846*5afab0e5SDag-Erling Smørgrav 847*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 848*5afab0e5SDag-Erling Smørgrav# Configuration options related to the input files 849*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 850*5afab0e5SDag-Erling Smørgrav 851*5afab0e5SDag-Erling Smørgrav# The INPUT tag is used to specify the files and/or directories that contain 852*5afab0e5SDag-Erling Smørgrav# documented source files. You may enter file names like myfile.cpp or 853*5afab0e5SDag-Erling Smørgrav# directories like /usr/src/myproject. Separate the files or directories with 854*5afab0e5SDag-Erling Smørgrav# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING 855*5afab0e5SDag-Erling Smørgrav# Note: If this tag is empty the current directory is searched. 856*5afab0e5SDag-Erling Smørgrav 857*5afab0e5SDag-Erling SmørgravINPUT = . \ 858*5afab0e5SDag-Erling Smørgrav ldns/ \ 859*5afab0e5SDag-Erling Smørgrav doc/ \ 860*5afab0e5SDag-Erling Smørgrav examples/ldns-mx.c \ 861*5afab0e5SDag-Erling Smørgrav examples/ldns-read-zone.c \ 862*5afab0e5SDag-Erling Smørgrav examples/ldns-signzone.c 863*5afab0e5SDag-Erling Smørgrav 864*5afab0e5SDag-Erling Smørgrav# This tag can be used to specify the character encoding of the source files 865*5afab0e5SDag-Erling Smørgrav# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses 866*5afab0e5SDag-Erling Smørgrav# libiconv (or the iconv built into libc) for the transcoding. See the libiconv 867*5afab0e5SDag-Erling Smørgrav# documentation (see: 868*5afab0e5SDag-Erling Smørgrav# https://www.gnu.org/software/libiconv/) for the list of possible encodings. 869*5afab0e5SDag-Erling Smørgrav# The default value is: UTF-8. 870*5afab0e5SDag-Erling Smørgrav 871*5afab0e5SDag-Erling SmørgravINPUT_ENCODING = UTF-8 872*5afab0e5SDag-Erling Smørgrav 873*5afab0e5SDag-Erling Smørgrav# If the value of the INPUT tag contains directories, you can use the 874*5afab0e5SDag-Erling Smørgrav# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and 875*5afab0e5SDag-Erling Smørgrav# *.h) to filter out the source-files in the directories. 876*5afab0e5SDag-Erling Smørgrav# 877*5afab0e5SDag-Erling Smørgrav# Note that for custom extensions or not directly supported extensions you also 878*5afab0e5SDag-Erling Smørgrav# need to set EXTENSION_MAPPING for the extension otherwise the files are not 879*5afab0e5SDag-Erling Smørgrav# read by doxygen. 880*5afab0e5SDag-Erling Smørgrav# 881*5afab0e5SDag-Erling Smørgrav# Note the list of default checked file patterns might differ from the list of 882*5afab0e5SDag-Erling Smørgrav# default file extension mappings. 883*5afab0e5SDag-Erling Smørgrav# 884*5afab0e5SDag-Erling Smørgrav# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, 885*5afab0e5SDag-Erling Smørgrav# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, 886*5afab0e5SDag-Erling Smørgrav# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, 887*5afab0e5SDag-Erling Smørgrav# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), 888*5afab0e5SDag-Erling Smørgrav# *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl, 889*5afab0e5SDag-Erling Smørgrav# *.ucf, *.qsf and *.ice. 890*5afab0e5SDag-Erling Smørgrav 891*5afab0e5SDag-Erling SmørgravFILE_PATTERNS = 892*5afab0e5SDag-Erling Smørgrav 893*5afab0e5SDag-Erling Smørgrav# The RECURSIVE tag can be used to specify whether or not subdirectories should 894*5afab0e5SDag-Erling Smørgrav# be searched for input files as well. 895*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 896*5afab0e5SDag-Erling Smørgrav 897*5afab0e5SDag-Erling SmørgravRECURSIVE = NO 898*5afab0e5SDag-Erling Smørgrav 899*5afab0e5SDag-Erling Smørgrav# The EXCLUDE tag can be used to specify files and/or directories that should be 900*5afab0e5SDag-Erling Smørgrav# excluded from the INPUT source files. This way you can easily exclude a 901*5afab0e5SDag-Erling Smørgrav# subdirectory from a directory tree whose root is specified with the INPUT tag. 902*5afab0e5SDag-Erling Smørgrav# 903*5afab0e5SDag-Erling Smørgrav# Note that relative paths are relative to the directory from which doxygen is 904*5afab0e5SDag-Erling Smørgrav# run. 905*5afab0e5SDag-Erling Smørgrav 906*5afab0e5SDag-Erling SmørgravEXCLUDE = 907*5afab0e5SDag-Erling Smørgrav 908*5afab0e5SDag-Erling Smørgrav# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or 909*5afab0e5SDag-Erling Smørgrav# directories that are symbolic links (a Unix file system feature) are excluded 910*5afab0e5SDag-Erling Smørgrav# from the input. 911*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 912*5afab0e5SDag-Erling Smørgrav 913*5afab0e5SDag-Erling SmørgravEXCLUDE_SYMLINKS = NO 914*5afab0e5SDag-Erling Smørgrav 915*5afab0e5SDag-Erling Smørgrav# If the value of the INPUT tag contains directories, you can use the 916*5afab0e5SDag-Erling Smørgrav# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 917*5afab0e5SDag-Erling Smørgrav# certain files from those directories. 918*5afab0e5SDag-Erling Smørgrav# 919*5afab0e5SDag-Erling Smørgrav# Note that the wildcards are matched against the file with absolute path, so to 920*5afab0e5SDag-Erling Smørgrav# exclude all test directories for example use the pattern */test/* 921*5afab0e5SDag-Erling Smørgrav 922*5afab0e5SDag-Erling SmørgravEXCLUDE_PATTERNS = 923*5afab0e5SDag-Erling Smørgrav 924*5afab0e5SDag-Erling Smørgrav# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 925*5afab0e5SDag-Erling Smørgrav# (namespaces, classes, functions, etc.) that should be excluded from the 926*5afab0e5SDag-Erling Smørgrav# output. The symbol name can be a fully qualified name, a word, or if the 927*5afab0e5SDag-Erling Smørgrav# wildcard * is used, a substring. Examples: ANamespace, AClass, 928*5afab0e5SDag-Erling Smørgrav# AClass::ANamespace, ANamespace::*Test 929*5afab0e5SDag-Erling Smørgrav# 930*5afab0e5SDag-Erling Smørgrav# Note that the wildcards are matched against the file with absolute path, so to 931*5afab0e5SDag-Erling Smørgrav# exclude all test directories use the pattern */test/* 932*5afab0e5SDag-Erling Smørgrav 933*5afab0e5SDag-Erling SmørgravEXCLUDE_SYMBOLS = 934*5afab0e5SDag-Erling Smørgrav 935*5afab0e5SDag-Erling Smørgrav# The EXAMPLE_PATH tag can be used to specify one or more files or directories 936*5afab0e5SDag-Erling Smørgrav# that contain example code fragments that are included (see the \include 937*5afab0e5SDag-Erling Smørgrav# command). 938*5afab0e5SDag-Erling Smørgrav 939*5afab0e5SDag-Erling SmørgravEXAMPLE_PATH = examples 940*5afab0e5SDag-Erling Smørgrav 941*5afab0e5SDag-Erling Smørgrav# If the value of the EXAMPLE_PATH tag contains directories, you can use the 942*5afab0e5SDag-Erling Smørgrav# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and 943*5afab0e5SDag-Erling Smørgrav# *.h) to filter out the source-files in the directories. If left blank all 944*5afab0e5SDag-Erling Smørgrav# files are included. 945*5afab0e5SDag-Erling Smørgrav 946*5afab0e5SDag-Erling SmørgravEXAMPLE_PATTERNS = 947*5afab0e5SDag-Erling Smørgrav 948*5afab0e5SDag-Erling Smørgrav# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 949*5afab0e5SDag-Erling Smørgrav# searched for input files to be used with the \include or \dontinclude commands 950*5afab0e5SDag-Erling Smørgrav# irrespective of the value of the RECURSIVE tag. 951*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 952*5afab0e5SDag-Erling Smørgrav 953*5afab0e5SDag-Erling SmørgravEXAMPLE_RECURSIVE = NO 954*5afab0e5SDag-Erling Smørgrav 955*5afab0e5SDag-Erling Smørgrav# The IMAGE_PATH tag can be used to specify one or more files or directories 956*5afab0e5SDag-Erling Smørgrav# that contain images that are to be included in the documentation (see the 957*5afab0e5SDag-Erling Smørgrav# \image command). 958*5afab0e5SDag-Erling Smørgrav 959*5afab0e5SDag-Erling SmørgravIMAGE_PATH = doc/images 960*5afab0e5SDag-Erling Smørgrav 961*5afab0e5SDag-Erling Smørgrav# The INPUT_FILTER tag can be used to specify a program that doxygen should 962*5afab0e5SDag-Erling Smørgrav# invoke to filter for each input file. Doxygen will invoke the filter program 963*5afab0e5SDag-Erling Smørgrav# by executing (via popen()) the command: 964*5afab0e5SDag-Erling Smørgrav# 965*5afab0e5SDag-Erling Smørgrav# <filter> <input-file> 966*5afab0e5SDag-Erling Smørgrav# 967*5afab0e5SDag-Erling Smørgrav# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the 968*5afab0e5SDag-Erling Smørgrav# name of an input file. Doxygen will then use the output that the filter 969*5afab0e5SDag-Erling Smørgrav# program writes to standard output. If FILTER_PATTERNS is specified, this tag 970*5afab0e5SDag-Erling Smørgrav# will be ignored. 971*5afab0e5SDag-Erling Smørgrav# 972*5afab0e5SDag-Erling Smørgrav# Note that the filter must not add or remove lines; it is applied before the 973*5afab0e5SDag-Erling Smørgrav# code is scanned, but not when the output code is generated. If lines are added 974*5afab0e5SDag-Erling Smørgrav# or removed, the anchors will not be placed correctly. 975*5afab0e5SDag-Erling Smørgrav# 976*5afab0e5SDag-Erling Smørgrav# Note that for custom extensions or not directly supported extensions you also 977*5afab0e5SDag-Erling Smørgrav# need to set EXTENSION_MAPPING for the extension otherwise the files are not 978*5afab0e5SDag-Erling Smørgrav# properly processed by doxygen. 979*5afab0e5SDag-Erling Smørgrav 980*5afab0e5SDag-Erling SmørgravINPUT_FILTER = 981*5afab0e5SDag-Erling Smørgrav 982*5afab0e5SDag-Erling Smørgrav# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 983*5afab0e5SDag-Erling Smørgrav# basis. Doxygen will compare the file name with each pattern and apply the 984*5afab0e5SDag-Erling Smørgrav# filter if there is a match. The filters are a list of the form: pattern=filter 985*5afab0e5SDag-Erling Smørgrav# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how 986*5afab0e5SDag-Erling Smørgrav# filters are used. If the FILTER_PATTERNS tag is empty or if none of the 987*5afab0e5SDag-Erling Smørgrav# patterns match the file name, INPUT_FILTER is applied. 988*5afab0e5SDag-Erling Smørgrav# 989*5afab0e5SDag-Erling Smørgrav# Note that for custom extensions or not directly supported extensions you also 990*5afab0e5SDag-Erling Smørgrav# need to set EXTENSION_MAPPING for the extension otherwise the files are not 991*5afab0e5SDag-Erling Smørgrav# properly processed by doxygen. 992*5afab0e5SDag-Erling Smørgrav 993*5afab0e5SDag-Erling SmørgravFILTER_PATTERNS = 994*5afab0e5SDag-Erling Smørgrav 995*5afab0e5SDag-Erling Smørgrav# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 996*5afab0e5SDag-Erling Smørgrav# INPUT_FILTER) will also be used to filter the input files that are used for 997*5afab0e5SDag-Erling Smørgrav# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). 998*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 999*5afab0e5SDag-Erling Smørgrav 1000*5afab0e5SDag-Erling SmørgravFILTER_SOURCE_FILES = NO 1001*5afab0e5SDag-Erling Smørgrav 1002*5afab0e5SDag-Erling Smørgrav# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file 1003*5afab0e5SDag-Erling Smørgrav# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and 1004*5afab0e5SDag-Erling Smørgrav# it is also possible to disable source filtering for a specific pattern using 1005*5afab0e5SDag-Erling Smørgrav# *.ext= (so without naming a filter). 1006*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. 1007*5afab0e5SDag-Erling Smørgrav 1008*5afab0e5SDag-Erling SmørgravFILTER_SOURCE_PATTERNS = 1009*5afab0e5SDag-Erling Smørgrav 1010*5afab0e5SDag-Erling Smørgrav# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that 1011*5afab0e5SDag-Erling Smørgrav# is part of the input, its contents will be placed on the main page 1012*5afab0e5SDag-Erling Smørgrav# (index.html). This can be useful if you have a project on for instance GitHub 1013*5afab0e5SDag-Erling Smørgrav# and want to reuse the introduction page also for the doxygen output. 1014*5afab0e5SDag-Erling Smørgrav 1015*5afab0e5SDag-Erling SmørgravUSE_MDFILE_AS_MAINPAGE = 1016*5afab0e5SDag-Erling Smørgrav 1017*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1018*5afab0e5SDag-Erling Smørgrav# Configuration options related to source browsing 1019*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1020*5afab0e5SDag-Erling Smørgrav 1021*5afab0e5SDag-Erling Smørgrav# If the SOURCE_BROWSER tag is set to YES then a list of source files will be 1022*5afab0e5SDag-Erling Smørgrav# generated. Documented entities will be cross-referenced with these sources. 1023*5afab0e5SDag-Erling Smørgrav# 1024*5afab0e5SDag-Erling Smørgrav# Note: To get rid of all source code in the generated output, make sure that 1025*5afab0e5SDag-Erling Smørgrav# also VERBATIM_HEADERS is set to NO. 1026*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1027*5afab0e5SDag-Erling Smørgrav 1028*5afab0e5SDag-Erling SmørgravSOURCE_BROWSER = YES 1029*5afab0e5SDag-Erling Smørgrav 1030*5afab0e5SDag-Erling Smørgrav# Setting the INLINE_SOURCES tag to YES will include the body of functions, 1031*5afab0e5SDag-Erling Smørgrav# classes and enums directly into the documentation. 1032*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1033*5afab0e5SDag-Erling Smørgrav 1034*5afab0e5SDag-Erling SmørgravINLINE_SOURCES = NO 1035*5afab0e5SDag-Erling Smørgrav 1036*5afab0e5SDag-Erling Smørgrav# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any 1037*5afab0e5SDag-Erling Smørgrav# special comment blocks from generated source code fragments. Normal C, C++ and 1038*5afab0e5SDag-Erling Smørgrav# Fortran comments will always remain visible. 1039*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1040*5afab0e5SDag-Erling Smørgrav 1041*5afab0e5SDag-Erling SmørgravSTRIP_CODE_COMMENTS = YES 1042*5afab0e5SDag-Erling Smørgrav 1043*5afab0e5SDag-Erling Smørgrav# If the REFERENCED_BY_RELATION tag is set to YES then for each documented 1044*5afab0e5SDag-Erling Smørgrav# entity all documented functions referencing it will be listed. 1045*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1046*5afab0e5SDag-Erling Smørgrav 1047*5afab0e5SDag-Erling SmørgravREFERENCED_BY_RELATION = NO 1048*5afab0e5SDag-Erling Smørgrav 1049*5afab0e5SDag-Erling Smørgrav# If the REFERENCES_RELATION tag is set to YES then for each documented function 1050*5afab0e5SDag-Erling Smørgrav# all documented entities called/used by that function will be listed. 1051*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1052*5afab0e5SDag-Erling Smørgrav 1053*5afab0e5SDag-Erling SmørgravREFERENCES_RELATION = YES 1054*5afab0e5SDag-Erling Smørgrav 1055*5afab0e5SDag-Erling Smørgrav# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set 1056*5afab0e5SDag-Erling Smørgrav# to YES then the hyperlinks from functions in REFERENCES_RELATION and 1057*5afab0e5SDag-Erling Smørgrav# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will 1058*5afab0e5SDag-Erling Smørgrav# link to the documentation. 1059*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1060*5afab0e5SDag-Erling Smørgrav 1061*5afab0e5SDag-Erling SmørgravREFERENCES_LINK_SOURCE = YES 1062*5afab0e5SDag-Erling Smørgrav 1063*5afab0e5SDag-Erling Smørgrav# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the 1064*5afab0e5SDag-Erling Smørgrav# source code will show a tooltip with additional information such as prototype, 1065*5afab0e5SDag-Erling Smørgrav# brief description and links to the definition and documentation. Since this 1066*5afab0e5SDag-Erling Smørgrav# will make the HTML file larger and loading of large files a bit slower, you 1067*5afab0e5SDag-Erling Smørgrav# can opt to disable this feature. 1068*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1069*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag SOURCE_BROWSER is set to YES. 1070*5afab0e5SDag-Erling Smørgrav 1071*5afab0e5SDag-Erling SmørgravSOURCE_TOOLTIPS = YES 1072*5afab0e5SDag-Erling Smørgrav 1073*5afab0e5SDag-Erling Smørgrav# If the USE_HTAGS tag is set to YES then the references to source code will 1074*5afab0e5SDag-Erling Smørgrav# point to the HTML generated by the htags(1) tool instead of doxygen built-in 1075*5afab0e5SDag-Erling Smørgrav# source browser. The htags tool is part of GNU's global source tagging system 1076*5afab0e5SDag-Erling Smørgrav# (see https://www.gnu.org/software/global/global.html). You will need version 1077*5afab0e5SDag-Erling Smørgrav# 4.8.6 or higher. 1078*5afab0e5SDag-Erling Smørgrav# 1079*5afab0e5SDag-Erling Smørgrav# To use it do the following: 1080*5afab0e5SDag-Erling Smørgrav# - Install the latest version of global 1081*5afab0e5SDag-Erling Smørgrav# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file 1082*5afab0e5SDag-Erling Smørgrav# - Make sure the INPUT points to the root of the source tree 1083*5afab0e5SDag-Erling Smørgrav# - Run doxygen as normal 1084*5afab0e5SDag-Erling Smørgrav# 1085*5afab0e5SDag-Erling Smørgrav# Doxygen will invoke htags (and that will in turn invoke gtags), so these 1086*5afab0e5SDag-Erling Smørgrav# tools must be available from the command line (i.e. in the search path). 1087*5afab0e5SDag-Erling Smørgrav# 1088*5afab0e5SDag-Erling Smørgrav# The result: instead of the source browser generated by doxygen, the links to 1089*5afab0e5SDag-Erling Smørgrav# source code will now point to the output of htags. 1090*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1091*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag SOURCE_BROWSER is set to YES. 1092*5afab0e5SDag-Erling Smørgrav 1093*5afab0e5SDag-Erling SmørgravUSE_HTAGS = NO 1094*5afab0e5SDag-Erling Smørgrav 1095*5afab0e5SDag-Erling Smørgrav# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a 1096*5afab0e5SDag-Erling Smørgrav# verbatim copy of the header file for each class for which an include is 1097*5afab0e5SDag-Erling Smørgrav# specified. Set to NO to disable this. 1098*5afab0e5SDag-Erling Smørgrav# See also: Section \class. 1099*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1100*5afab0e5SDag-Erling Smørgrav 1101*5afab0e5SDag-Erling SmørgravVERBATIM_HEADERS = YES 1102*5afab0e5SDag-Erling Smørgrav 1103*5afab0e5SDag-Erling Smørgrav# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the 1104*5afab0e5SDag-Erling Smørgrav# clang parser (see: 1105*5afab0e5SDag-Erling Smørgrav# http://clang.llvm.org/) for more accurate parsing at the cost of reduced 1106*5afab0e5SDag-Erling Smørgrav# performance. This can be particularly helpful with template rich C++ code for 1107*5afab0e5SDag-Erling Smørgrav# which doxygen's built-in parser lacks the necessary type information. 1108*5afab0e5SDag-Erling Smørgrav# Note: The availability of this option depends on whether or not doxygen was 1109*5afab0e5SDag-Erling Smørgrav# generated with the -Duse_libclang=ON option for CMake. 1110*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1111*5afab0e5SDag-Erling Smørgrav 1112*5afab0e5SDag-Erling SmørgravCLANG_ASSISTED_PARSING = NO 1113*5afab0e5SDag-Erling Smørgrav 1114*5afab0e5SDag-Erling Smørgrav# If clang assisted parsing is enabled and the CLANG_ADD_INC_PATHS tag is set to 1115*5afab0e5SDag-Erling Smørgrav# YES then doxygen will add the directory of each input to the include path. 1116*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1117*5afab0e5SDag-Erling Smørgrav 1118*5afab0e5SDag-Erling SmørgravCLANG_ADD_INC_PATHS = YES 1119*5afab0e5SDag-Erling Smørgrav 1120*5afab0e5SDag-Erling Smørgrav# If clang assisted parsing is enabled you can provide the compiler with command 1121*5afab0e5SDag-Erling Smørgrav# line options that you would normally use when invoking the compiler. Note that 1122*5afab0e5SDag-Erling Smørgrav# the include paths will already be set by doxygen for the files and directories 1123*5afab0e5SDag-Erling Smørgrav# specified with INPUT and INCLUDE_PATH. 1124*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. 1125*5afab0e5SDag-Erling Smørgrav 1126*5afab0e5SDag-Erling SmørgravCLANG_OPTIONS = 1127*5afab0e5SDag-Erling Smørgrav 1128*5afab0e5SDag-Erling Smørgrav# If clang assisted parsing is enabled you can provide the clang parser with the 1129*5afab0e5SDag-Erling Smørgrav# path to the directory containing a file called compile_commands.json. This 1130*5afab0e5SDag-Erling Smørgrav# file is the compilation database (see: 1131*5afab0e5SDag-Erling Smørgrav# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the 1132*5afab0e5SDag-Erling Smørgrav# options used when the source files were built. This is equivalent to 1133*5afab0e5SDag-Erling Smørgrav# specifying the -p option to a clang tool, such as clang-check. These options 1134*5afab0e5SDag-Erling Smørgrav# will then be passed to the parser. Any options specified with CLANG_OPTIONS 1135*5afab0e5SDag-Erling Smørgrav# will be added as well. 1136*5afab0e5SDag-Erling Smørgrav# Note: The availability of this option depends on whether or not doxygen was 1137*5afab0e5SDag-Erling Smørgrav# generated with the -Duse_libclang=ON option for CMake. 1138*5afab0e5SDag-Erling Smørgrav 1139*5afab0e5SDag-Erling SmørgravCLANG_DATABASE_PATH = 1140*5afab0e5SDag-Erling Smørgrav 1141*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1142*5afab0e5SDag-Erling Smørgrav# Configuration options related to the alphabetical class index 1143*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1144*5afab0e5SDag-Erling Smørgrav 1145*5afab0e5SDag-Erling Smørgrav# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all 1146*5afab0e5SDag-Erling Smørgrav# compounds will be generated. Enable this if the project contains a lot of 1147*5afab0e5SDag-Erling Smørgrav# classes, structs, unions or interfaces. 1148*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1149*5afab0e5SDag-Erling Smørgrav 1150*5afab0e5SDag-Erling SmørgravALPHABETICAL_INDEX = YES 1151*5afab0e5SDag-Erling Smørgrav 1152*5afab0e5SDag-Erling Smørgrav# In case all classes in a project start with a common prefix, all classes will 1153*5afab0e5SDag-Erling Smørgrav# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag 1154*5afab0e5SDag-Erling Smørgrav# can be used to specify a prefix (or a list of prefixes) that should be ignored 1155*5afab0e5SDag-Erling Smørgrav# while generating the index headers. 1156*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. 1157*5afab0e5SDag-Erling Smørgrav 1158*5afab0e5SDag-Erling SmørgravIGNORE_PREFIX = ldns_ 1159*5afab0e5SDag-Erling Smørgrav 1160*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1161*5afab0e5SDag-Erling Smørgrav# Configuration options related to the HTML output 1162*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1163*5afab0e5SDag-Erling Smørgrav 1164*5afab0e5SDag-Erling Smørgrav# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output 1165*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1166*5afab0e5SDag-Erling Smørgrav 1167*5afab0e5SDag-Erling SmørgravGENERATE_HTML = YES 1168*5afab0e5SDag-Erling Smørgrav 1169*5afab0e5SDag-Erling Smørgrav# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a 1170*5afab0e5SDag-Erling Smørgrav# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1171*5afab0e5SDag-Erling Smørgrav# it. 1172*5afab0e5SDag-Erling Smørgrav# The default directory is: html. 1173*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1174*5afab0e5SDag-Erling Smørgrav 1175*5afab0e5SDag-Erling SmørgravHTML_OUTPUT = html 1176*5afab0e5SDag-Erling Smørgrav 1177*5afab0e5SDag-Erling Smørgrav# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each 1178*5afab0e5SDag-Erling Smørgrav# generated HTML page (for example: .htm, .php, .asp). 1179*5afab0e5SDag-Erling Smørgrav# The default value is: .html. 1180*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1181*5afab0e5SDag-Erling Smørgrav 1182*5afab0e5SDag-Erling SmørgravHTML_FILE_EXTENSION = .html 1183*5afab0e5SDag-Erling Smørgrav 1184*5afab0e5SDag-Erling Smørgrav# The HTML_HEADER tag can be used to specify a user-defined HTML header file for 1185*5afab0e5SDag-Erling Smørgrav# each generated HTML page. If the tag is left blank doxygen will generate a 1186*5afab0e5SDag-Erling Smørgrav# standard header. 1187*5afab0e5SDag-Erling Smørgrav# 1188*5afab0e5SDag-Erling Smørgrav# To get valid HTML the header file that includes any scripts and style sheets 1189*5afab0e5SDag-Erling Smørgrav# that doxygen needs, which is dependent on the configuration options used (e.g. 1190*5afab0e5SDag-Erling Smørgrav# the setting GENERATE_TREEVIEW). It is highly recommended to start with a 1191*5afab0e5SDag-Erling Smørgrav# default header using 1192*5afab0e5SDag-Erling Smørgrav# doxygen -w html new_header.html new_footer.html new_stylesheet.css 1193*5afab0e5SDag-Erling Smørgrav# YourConfigFile 1194*5afab0e5SDag-Erling Smørgrav# and then modify the file new_header.html. See also section "Doxygen usage" 1195*5afab0e5SDag-Erling Smørgrav# for information on how to generate the default header that doxygen normally 1196*5afab0e5SDag-Erling Smørgrav# uses. 1197*5afab0e5SDag-Erling Smørgrav# Note: The header is subject to change so you typically have to regenerate the 1198*5afab0e5SDag-Erling Smørgrav# default header when upgrading to a newer version of doxygen. For a description 1199*5afab0e5SDag-Erling Smørgrav# of the possible markers and block names see the documentation. 1200*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1201*5afab0e5SDag-Erling Smørgrav 1202*5afab0e5SDag-Erling SmørgravHTML_HEADER = doc/header.html 1203*5afab0e5SDag-Erling Smørgrav 1204*5afab0e5SDag-Erling Smørgrav# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each 1205*5afab0e5SDag-Erling Smørgrav# generated HTML page. If the tag is left blank doxygen will generate a standard 1206*5afab0e5SDag-Erling Smørgrav# footer. See HTML_HEADER for more information on how to generate a default 1207*5afab0e5SDag-Erling Smørgrav# footer and what special commands can be used inside the footer. See also 1208*5afab0e5SDag-Erling Smørgrav# section "Doxygen usage" for information on how to generate the default footer 1209*5afab0e5SDag-Erling Smørgrav# that doxygen normally uses. 1210*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1211*5afab0e5SDag-Erling Smørgrav 1212*5afab0e5SDag-Erling SmørgravHTML_FOOTER = 1213*5afab0e5SDag-Erling Smørgrav 1214*5afab0e5SDag-Erling Smørgrav# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style 1215*5afab0e5SDag-Erling Smørgrav# sheet that is used by each HTML page. It can be used to fine-tune the look of 1216*5afab0e5SDag-Erling Smørgrav# the HTML output. If left blank doxygen will generate a default style sheet. 1217*5afab0e5SDag-Erling Smørgrav# See also section "Doxygen usage" for information on how to generate the style 1218*5afab0e5SDag-Erling Smørgrav# sheet that doxygen normally uses. 1219*5afab0e5SDag-Erling Smørgrav# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as 1220*5afab0e5SDag-Erling Smørgrav# it is more robust and this tag (HTML_STYLESHEET) will in the future become 1221*5afab0e5SDag-Erling Smørgrav# obsolete. 1222*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1223*5afab0e5SDag-Erling Smørgrav 1224*5afab0e5SDag-Erling SmørgravHTML_STYLESHEET = 1225*5afab0e5SDag-Erling Smørgrav 1226*5afab0e5SDag-Erling Smørgrav# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined 1227*5afab0e5SDag-Erling Smørgrav# cascading style sheets that are included after the standard style sheets 1228*5afab0e5SDag-Erling Smørgrav# created by doxygen. Using this option one can overrule certain style aspects. 1229*5afab0e5SDag-Erling Smørgrav# This is preferred over using HTML_STYLESHEET since it does not replace the 1230*5afab0e5SDag-Erling Smørgrav# standard style sheet and is therefore more robust against future updates. 1231*5afab0e5SDag-Erling Smørgrav# Doxygen will copy the style sheet files to the output directory. 1232*5afab0e5SDag-Erling Smørgrav# Note: The order of the extra style sheet files is of importance (e.g. the last 1233*5afab0e5SDag-Erling Smørgrav# style sheet in the list overrules the setting of the previous ones in the 1234*5afab0e5SDag-Erling Smørgrav# list). For an example see the documentation. 1235*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1236*5afab0e5SDag-Erling Smørgrav 1237*5afab0e5SDag-Erling SmørgravHTML_EXTRA_STYLESHEET = 1238*5afab0e5SDag-Erling Smørgrav 1239*5afab0e5SDag-Erling Smørgrav# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or 1240*5afab0e5SDag-Erling Smørgrav# other source files which should be copied to the HTML output directory. Note 1241*5afab0e5SDag-Erling Smørgrav# that these files will be copied to the base HTML output directory. Use the 1242*5afab0e5SDag-Erling Smørgrav# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these 1243*5afab0e5SDag-Erling Smørgrav# files. In the HTML_STYLESHEET file, use the file name only. Also note that the 1244*5afab0e5SDag-Erling Smørgrav# files will be copied as-is; there are no commands or markers available. 1245*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1246*5afab0e5SDag-Erling Smørgrav 1247*5afab0e5SDag-Erling SmørgravHTML_EXTRA_FILES = 1248*5afab0e5SDag-Erling Smørgrav 1249*5afab0e5SDag-Erling Smørgrav# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen 1250*5afab0e5SDag-Erling Smørgrav# will adjust the colors in the style sheet and background images according to 1251*5afab0e5SDag-Erling Smørgrav# this color. Hue is specified as an angle on a colorwheel, see 1252*5afab0e5SDag-Erling Smørgrav# https://en.wikipedia.org/wiki/Hue for more information. For instance the value 1253*5afab0e5SDag-Erling Smørgrav# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 1254*5afab0e5SDag-Erling Smørgrav# purple, and 360 is red again. 1255*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 359, default value: 220. 1256*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1257*5afab0e5SDag-Erling Smørgrav 1258*5afab0e5SDag-Erling SmørgravHTML_COLORSTYLE_HUE = 220 1259*5afab0e5SDag-Erling Smørgrav 1260*5afab0e5SDag-Erling Smørgrav# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors 1261*5afab0e5SDag-Erling Smørgrav# in the HTML output. For a value of 0 the output will use grayscales only. A 1262*5afab0e5SDag-Erling Smørgrav# value of 255 will produce the most vivid colors. 1263*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 255, default value: 100. 1264*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1265*5afab0e5SDag-Erling Smørgrav 1266*5afab0e5SDag-Erling SmørgravHTML_COLORSTYLE_SAT = 100 1267*5afab0e5SDag-Erling Smørgrav 1268*5afab0e5SDag-Erling Smørgrav# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the 1269*5afab0e5SDag-Erling Smørgrav# luminance component of the colors in the HTML output. Values below 100 1270*5afab0e5SDag-Erling Smørgrav# gradually make the output lighter, whereas values above 100 make the output 1271*5afab0e5SDag-Erling Smørgrav# darker. The value divided by 100 is the actual gamma applied, so 80 represents 1272*5afab0e5SDag-Erling Smørgrav# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not 1273*5afab0e5SDag-Erling Smørgrav# change the gamma. 1274*5afab0e5SDag-Erling Smørgrav# Minimum value: 40, maximum value: 240, default value: 80. 1275*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1276*5afab0e5SDag-Erling Smørgrav 1277*5afab0e5SDag-Erling SmørgravHTML_COLORSTYLE_GAMMA = 80 1278*5afab0e5SDag-Erling Smørgrav 1279*5afab0e5SDag-Erling Smørgrav# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1280*5afab0e5SDag-Erling Smørgrav# page will contain the date and time when the page was generated. Setting this 1281*5afab0e5SDag-Erling Smørgrav# to YES can help to show when doxygen was last run and thus if the 1282*5afab0e5SDag-Erling Smørgrav# documentation is up to date. 1283*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1284*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1285*5afab0e5SDag-Erling Smørgrav 1286*5afab0e5SDag-Erling SmørgravHTML_TIMESTAMP = YES 1287*5afab0e5SDag-Erling Smørgrav 1288*5afab0e5SDag-Erling Smørgrav# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML 1289*5afab0e5SDag-Erling Smørgrav# documentation will contain a main index with vertical navigation menus that 1290*5afab0e5SDag-Erling Smørgrav# are dynamically created via JavaScript. If disabled, the navigation index will 1291*5afab0e5SDag-Erling Smørgrav# consists of multiple levels of tabs that are statically embedded in every HTML 1292*5afab0e5SDag-Erling Smørgrav# page. Disable this option to support browsers that do not have JavaScript, 1293*5afab0e5SDag-Erling Smørgrav# like the Qt help browser. 1294*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1295*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1296*5afab0e5SDag-Erling Smørgrav 1297*5afab0e5SDag-Erling SmørgravHTML_DYNAMIC_MENUS = YES 1298*5afab0e5SDag-Erling Smørgrav 1299*5afab0e5SDag-Erling Smørgrav# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 1300*5afab0e5SDag-Erling Smørgrav# documentation will contain sections that can be hidden and shown after the 1301*5afab0e5SDag-Erling Smørgrav# page has loaded. 1302*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1303*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1304*5afab0e5SDag-Erling Smørgrav 1305*5afab0e5SDag-Erling SmørgravHTML_DYNAMIC_SECTIONS = NO 1306*5afab0e5SDag-Erling Smørgrav 1307*5afab0e5SDag-Erling Smørgrav# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries 1308*5afab0e5SDag-Erling Smørgrav# shown in the various tree structured indices initially; the user can expand 1309*5afab0e5SDag-Erling Smørgrav# and collapse entries dynamically later on. Doxygen will expand the tree to 1310*5afab0e5SDag-Erling Smørgrav# such a level that at most the specified number of entries are visible (unless 1311*5afab0e5SDag-Erling Smørgrav# a fully collapsed tree already exceeds this amount). So setting the number of 1312*5afab0e5SDag-Erling Smørgrav# entries 1 will produce a full collapsed tree by default. 0 is a special value 1313*5afab0e5SDag-Erling Smørgrav# representing an infinite number of entries and will result in a full expanded 1314*5afab0e5SDag-Erling Smørgrav# tree by default. 1315*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 9999, default value: 100. 1316*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1317*5afab0e5SDag-Erling Smørgrav 1318*5afab0e5SDag-Erling SmørgravHTML_INDEX_NUM_ENTRIES = 100 1319*5afab0e5SDag-Erling Smørgrav 1320*5afab0e5SDag-Erling Smørgrav# If the GENERATE_DOCSET tag is set to YES, additional index files will be 1321*5afab0e5SDag-Erling Smørgrav# generated that can be used as input for Apple's Xcode 3 integrated development 1322*5afab0e5SDag-Erling Smørgrav# environment (see: 1323*5afab0e5SDag-Erling Smørgrav# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To 1324*5afab0e5SDag-Erling Smørgrav# create a documentation set, doxygen will generate a Makefile in the HTML 1325*5afab0e5SDag-Erling Smørgrav# output directory. Running make will produce the docset in that directory and 1326*5afab0e5SDag-Erling Smørgrav# running make install will install the docset in 1327*5afab0e5SDag-Erling Smørgrav# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at 1328*5afab0e5SDag-Erling Smørgrav# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy 1329*5afab0e5SDag-Erling Smørgrav# genXcode/_index.html for more information. 1330*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1331*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1332*5afab0e5SDag-Erling Smørgrav 1333*5afab0e5SDag-Erling SmørgravGENERATE_DOCSET = NO 1334*5afab0e5SDag-Erling Smørgrav 1335*5afab0e5SDag-Erling Smørgrav# This tag determines the name of the docset feed. A documentation feed provides 1336*5afab0e5SDag-Erling Smørgrav# an umbrella under which multiple documentation sets from a single provider 1337*5afab0e5SDag-Erling Smørgrav# (such as a company or product suite) can be grouped. 1338*5afab0e5SDag-Erling Smørgrav# The default value is: Doxygen generated docs. 1339*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_DOCSET is set to YES. 1340*5afab0e5SDag-Erling Smørgrav 1341*5afab0e5SDag-Erling SmørgravDOCSET_FEEDNAME = "Doxygen generated docs" 1342*5afab0e5SDag-Erling Smørgrav 1343*5afab0e5SDag-Erling Smørgrav# This tag specifies a string that should uniquely identify the documentation 1344*5afab0e5SDag-Erling Smørgrav# set bundle. This should be a reverse domain-name style string, e.g. 1345*5afab0e5SDag-Erling Smørgrav# com.mycompany.MyDocSet. Doxygen will append .docset to the name. 1346*5afab0e5SDag-Erling Smørgrav# The default value is: org.doxygen.Project. 1347*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_DOCSET is set to YES. 1348*5afab0e5SDag-Erling Smørgrav 1349*5afab0e5SDag-Erling SmørgravDOCSET_BUNDLE_ID = org.doxygen.Project 1350*5afab0e5SDag-Erling Smørgrav 1351*5afab0e5SDag-Erling Smørgrav# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify 1352*5afab0e5SDag-Erling Smørgrav# the documentation publisher. This should be a reverse domain-name style 1353*5afab0e5SDag-Erling Smørgrav# string, e.g. com.mycompany.MyDocSet.documentation. 1354*5afab0e5SDag-Erling Smørgrav# The default value is: org.doxygen.Publisher. 1355*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_DOCSET is set to YES. 1356*5afab0e5SDag-Erling Smørgrav 1357*5afab0e5SDag-Erling SmørgravDOCSET_PUBLISHER_ID = org.doxygen.Publisher 1358*5afab0e5SDag-Erling Smørgrav 1359*5afab0e5SDag-Erling Smørgrav# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. 1360*5afab0e5SDag-Erling Smørgrav# The default value is: Publisher. 1361*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_DOCSET is set to YES. 1362*5afab0e5SDag-Erling Smørgrav 1363*5afab0e5SDag-Erling SmørgravDOCSET_PUBLISHER_NAME = Publisher 1364*5afab0e5SDag-Erling Smørgrav 1365*5afab0e5SDag-Erling Smørgrav# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three 1366*5afab0e5SDag-Erling Smørgrav# additional HTML index files: index.hhp, index.hhc, and index.hhk. The 1367*5afab0e5SDag-Erling Smørgrav# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop 1368*5afab0e5SDag-Erling Smørgrav# (see: 1369*5afab0e5SDag-Erling Smørgrav# https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows. 1370*5afab0e5SDag-Erling Smørgrav# 1371*5afab0e5SDag-Erling Smørgrav# The HTML Help Workshop contains a compiler that can convert all HTML output 1372*5afab0e5SDag-Erling Smørgrav# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML 1373*5afab0e5SDag-Erling Smørgrav# files are now used as the Windows 98 help format, and will replace the old 1374*5afab0e5SDag-Erling Smørgrav# Windows help format (.hlp) on all Windows platforms in the future. Compressed 1375*5afab0e5SDag-Erling Smørgrav# HTML files also contain an index, a table of contents, and you can search for 1376*5afab0e5SDag-Erling Smørgrav# words in the documentation. The HTML workshop also contains a viewer for 1377*5afab0e5SDag-Erling Smørgrav# compressed HTML files. 1378*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1379*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1380*5afab0e5SDag-Erling Smørgrav 1381*5afab0e5SDag-Erling SmørgravGENERATE_HTMLHELP = NO 1382*5afab0e5SDag-Erling Smørgrav 1383*5afab0e5SDag-Erling Smørgrav# The CHM_FILE tag can be used to specify the file name of the resulting .chm 1384*5afab0e5SDag-Erling Smørgrav# file. You can add a path in front of the file if the result should not be 1385*5afab0e5SDag-Erling Smørgrav# written to the html output directory. 1386*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1387*5afab0e5SDag-Erling Smørgrav 1388*5afab0e5SDag-Erling SmørgravCHM_FILE = 1389*5afab0e5SDag-Erling Smørgrav 1390*5afab0e5SDag-Erling Smørgrav# The HHC_LOCATION tag can be used to specify the location (absolute path 1391*5afab0e5SDag-Erling Smørgrav# including file name) of the HTML help compiler (hhc.exe). If non-empty, 1392*5afab0e5SDag-Erling Smørgrav# doxygen will try to run the HTML help compiler on the generated index.hhp. 1393*5afab0e5SDag-Erling Smørgrav# The file has to be specified with full path. 1394*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1395*5afab0e5SDag-Erling Smørgrav 1396*5afab0e5SDag-Erling SmørgravHHC_LOCATION = 1397*5afab0e5SDag-Erling Smørgrav 1398*5afab0e5SDag-Erling Smørgrav# The GENERATE_CHI flag controls if a separate .chi index file is generated 1399*5afab0e5SDag-Erling Smørgrav# (YES) or that it should be included in the main .chm file (NO). 1400*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1401*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1402*5afab0e5SDag-Erling Smørgrav 1403*5afab0e5SDag-Erling SmørgravGENERATE_CHI = NO 1404*5afab0e5SDag-Erling Smørgrav 1405*5afab0e5SDag-Erling Smørgrav# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) 1406*5afab0e5SDag-Erling Smørgrav# and project file content. 1407*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1408*5afab0e5SDag-Erling Smørgrav 1409*5afab0e5SDag-Erling SmørgravCHM_INDEX_ENCODING = 1410*5afab0e5SDag-Erling Smørgrav 1411*5afab0e5SDag-Erling Smørgrav# The BINARY_TOC flag controls whether a binary table of contents is generated 1412*5afab0e5SDag-Erling Smørgrav# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it 1413*5afab0e5SDag-Erling Smørgrav# enables the Previous and Next buttons. 1414*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1415*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1416*5afab0e5SDag-Erling Smørgrav 1417*5afab0e5SDag-Erling SmørgravBINARY_TOC = NO 1418*5afab0e5SDag-Erling Smørgrav 1419*5afab0e5SDag-Erling Smørgrav# The TOC_EXPAND flag can be set to YES to add extra items for group members to 1420*5afab0e5SDag-Erling Smørgrav# the table of contents of the HTML help documentation and to the tree view. 1421*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1422*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTMLHELP is set to YES. 1423*5afab0e5SDag-Erling Smørgrav 1424*5afab0e5SDag-Erling SmørgravTOC_EXPAND = NO 1425*5afab0e5SDag-Erling Smørgrav 1426*5afab0e5SDag-Erling Smørgrav# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and 1427*5afab0e5SDag-Erling Smørgrav# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that 1428*5afab0e5SDag-Erling Smørgrav# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help 1429*5afab0e5SDag-Erling Smørgrav# (.qch) of the generated HTML documentation. 1430*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1431*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1432*5afab0e5SDag-Erling Smørgrav 1433*5afab0e5SDag-Erling SmørgravGENERATE_QHP = NO 1434*5afab0e5SDag-Erling Smørgrav 1435*5afab0e5SDag-Erling Smørgrav# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify 1436*5afab0e5SDag-Erling Smørgrav# the file name of the resulting .qch file. The path specified is relative to 1437*5afab0e5SDag-Erling Smørgrav# the HTML output folder. 1438*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_QHP is set to YES. 1439*5afab0e5SDag-Erling Smørgrav 1440*5afab0e5SDag-Erling SmørgravQCH_FILE = 1441*5afab0e5SDag-Erling Smørgrav 1442*5afab0e5SDag-Erling Smørgrav# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help 1443*5afab0e5SDag-Erling Smørgrav# Project output. For more information please see Qt Help Project / Namespace 1444*5afab0e5SDag-Erling Smørgrav# (see: 1445*5afab0e5SDag-Erling Smørgrav# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). 1446*5afab0e5SDag-Erling Smørgrav# The default value is: org.doxygen.Project. 1447*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_QHP is set to YES. 1448*5afab0e5SDag-Erling Smørgrav 1449*5afab0e5SDag-Erling SmørgravQHP_NAMESPACE = org.doxygen.Project 1450*5afab0e5SDag-Erling Smørgrav 1451*5afab0e5SDag-Erling Smørgrav# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt 1452*5afab0e5SDag-Erling Smørgrav# Help Project output. For more information please see Qt Help Project / Virtual 1453*5afab0e5SDag-Erling Smørgrav# Folders (see: 1454*5afab0e5SDag-Erling Smørgrav# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). 1455*5afab0e5SDag-Erling Smørgrav# The default value is: doc. 1456*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_QHP is set to YES. 1457*5afab0e5SDag-Erling Smørgrav 1458*5afab0e5SDag-Erling SmørgravQHP_VIRTUAL_FOLDER = doc 1459*5afab0e5SDag-Erling Smørgrav 1460*5afab0e5SDag-Erling Smørgrav# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom 1461*5afab0e5SDag-Erling Smørgrav# filter to add. For more information please see Qt Help Project / Custom 1462*5afab0e5SDag-Erling Smørgrav# Filters (see: 1463*5afab0e5SDag-Erling Smørgrav# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). 1464*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_QHP is set to YES. 1465*5afab0e5SDag-Erling Smørgrav 1466*5afab0e5SDag-Erling SmørgravQHP_CUST_FILTER_NAME = 1467*5afab0e5SDag-Erling Smørgrav 1468*5afab0e5SDag-Erling Smørgrav# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the 1469*5afab0e5SDag-Erling Smørgrav# custom filter to add. For more information please see Qt Help Project / Custom 1470*5afab0e5SDag-Erling Smørgrav# Filters (see: 1471*5afab0e5SDag-Erling Smørgrav# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). 1472*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_QHP is set to YES. 1473*5afab0e5SDag-Erling Smørgrav 1474*5afab0e5SDag-Erling SmørgravQHP_CUST_FILTER_ATTRS = 1475*5afab0e5SDag-Erling Smørgrav 1476*5afab0e5SDag-Erling Smørgrav# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this 1477*5afab0e5SDag-Erling Smørgrav# project's filter section matches. Qt Help Project / Filter Attributes (see: 1478*5afab0e5SDag-Erling Smørgrav# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). 1479*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_QHP is set to YES. 1480*5afab0e5SDag-Erling Smørgrav 1481*5afab0e5SDag-Erling SmørgravQHP_SECT_FILTER_ATTRS = 1482*5afab0e5SDag-Erling Smørgrav 1483*5afab0e5SDag-Erling Smørgrav# The QHG_LOCATION tag can be used to specify the location (absolute path 1484*5afab0e5SDag-Erling Smørgrav# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to 1485*5afab0e5SDag-Erling Smørgrav# run qhelpgenerator on the generated .qhp file. 1486*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_QHP is set to YES. 1487*5afab0e5SDag-Erling Smørgrav 1488*5afab0e5SDag-Erling SmørgravQHG_LOCATION = 1489*5afab0e5SDag-Erling Smørgrav 1490*5afab0e5SDag-Erling Smørgrav# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be 1491*5afab0e5SDag-Erling Smørgrav# generated, together with the HTML files, they form an Eclipse help plugin. To 1492*5afab0e5SDag-Erling Smørgrav# install this plugin and make it available under the help contents menu in 1493*5afab0e5SDag-Erling Smørgrav# Eclipse, the contents of the directory containing the HTML and XML files needs 1494*5afab0e5SDag-Erling Smørgrav# to be copied into the plugins directory of eclipse. The name of the directory 1495*5afab0e5SDag-Erling Smørgrav# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. 1496*5afab0e5SDag-Erling Smørgrav# After copying Eclipse needs to be restarted before the help appears. 1497*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1498*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1499*5afab0e5SDag-Erling Smørgrav 1500*5afab0e5SDag-Erling SmørgravGENERATE_ECLIPSEHELP = NO 1501*5afab0e5SDag-Erling Smørgrav 1502*5afab0e5SDag-Erling Smørgrav# A unique identifier for the Eclipse help plugin. When installing the plugin 1503*5afab0e5SDag-Erling Smørgrav# the directory name containing the HTML and XML files should also have this 1504*5afab0e5SDag-Erling Smørgrav# name. Each documentation set should have its own identifier. 1505*5afab0e5SDag-Erling Smørgrav# The default value is: org.doxygen.Project. 1506*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. 1507*5afab0e5SDag-Erling Smørgrav 1508*5afab0e5SDag-Erling SmørgravECLIPSE_DOC_ID = org.doxygen.Project 1509*5afab0e5SDag-Erling Smørgrav 1510*5afab0e5SDag-Erling Smørgrav# If you want full control over the layout of the generated HTML pages it might 1511*5afab0e5SDag-Erling Smørgrav# be necessary to disable the index and replace it with your own. The 1512*5afab0e5SDag-Erling Smørgrav# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top 1513*5afab0e5SDag-Erling Smørgrav# of each HTML page. A value of NO enables the index and the value YES disables 1514*5afab0e5SDag-Erling Smørgrav# it. Since the tabs in the index contain the same information as the navigation 1515*5afab0e5SDag-Erling Smørgrav# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. 1516*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1517*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1518*5afab0e5SDag-Erling Smørgrav 1519*5afab0e5SDag-Erling SmørgravDISABLE_INDEX = NO 1520*5afab0e5SDag-Erling Smørgrav 1521*5afab0e5SDag-Erling Smørgrav# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index 1522*5afab0e5SDag-Erling Smørgrav# structure should be generated to display hierarchical information. If the tag 1523*5afab0e5SDag-Erling Smørgrav# value is set to YES, a side panel will be generated containing a tree-like 1524*5afab0e5SDag-Erling Smørgrav# index structure (just like the one that is generated for HTML Help). For this 1525*5afab0e5SDag-Erling Smørgrav# to work a browser that supports JavaScript, DHTML, CSS and frames is required 1526*5afab0e5SDag-Erling Smørgrav# (i.e. any modern browser). Windows users are probably better off using the 1527*5afab0e5SDag-Erling Smørgrav# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can 1528*5afab0e5SDag-Erling Smørgrav# further fine-tune the look of the index. As an example, the default style 1529*5afab0e5SDag-Erling Smørgrav# sheet generated by doxygen has an example that shows how to put an image at 1530*5afab0e5SDag-Erling Smørgrav# the root of the tree instead of the PROJECT_NAME. Since the tree basically has 1531*5afab0e5SDag-Erling Smørgrav# the same information as the tab index, you could consider setting 1532*5afab0e5SDag-Erling Smørgrav# DISABLE_INDEX to YES when enabling this option. 1533*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1534*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1535*5afab0e5SDag-Erling Smørgrav 1536*5afab0e5SDag-Erling SmørgravGENERATE_TREEVIEW = NO 1537*5afab0e5SDag-Erling Smørgrav 1538*5afab0e5SDag-Erling Smørgrav# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that 1539*5afab0e5SDag-Erling Smørgrav# doxygen will group on one line in the generated HTML documentation. 1540*5afab0e5SDag-Erling Smørgrav# 1541*5afab0e5SDag-Erling Smørgrav# Note that a value of 0 will completely suppress the enum values from appearing 1542*5afab0e5SDag-Erling Smørgrav# in the overview section. 1543*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 20, default value: 4. 1544*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1545*5afab0e5SDag-Erling Smørgrav 1546*5afab0e5SDag-Erling SmørgravENUM_VALUES_PER_LINE = 4 1547*5afab0e5SDag-Erling Smørgrav 1548*5afab0e5SDag-Erling Smørgrav# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used 1549*5afab0e5SDag-Erling Smørgrav# to set the initial width (in pixels) of the frame in which the tree is shown. 1550*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 1500, default value: 250. 1551*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1552*5afab0e5SDag-Erling Smørgrav 1553*5afab0e5SDag-Erling SmørgravTREEVIEW_WIDTH = 250 1554*5afab0e5SDag-Erling Smørgrav 1555*5afab0e5SDag-Erling Smørgrav# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to 1556*5afab0e5SDag-Erling Smørgrav# external symbols imported via tag files in a separate window. 1557*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1558*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1559*5afab0e5SDag-Erling Smørgrav 1560*5afab0e5SDag-Erling SmørgravEXT_LINKS_IN_WINDOW = NO 1561*5afab0e5SDag-Erling Smørgrav 1562*5afab0e5SDag-Erling Smørgrav# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg 1563*5afab0e5SDag-Erling Smørgrav# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see 1564*5afab0e5SDag-Erling Smørgrav# https://inkscape.org) to generate formulas as SVG images instead of PNGs for 1565*5afab0e5SDag-Erling Smørgrav# the HTML output. These images will generally look nicer at scaled resolutions. 1566*5afab0e5SDag-Erling Smørgrav# Possible values are: png (the default) and svg (looks nicer but requires the 1567*5afab0e5SDag-Erling Smørgrav# pdf2svg or inkscape tool). 1568*5afab0e5SDag-Erling Smørgrav# The default value is: png. 1569*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1570*5afab0e5SDag-Erling Smørgrav 1571*5afab0e5SDag-Erling SmørgravHTML_FORMULA_FORMAT = png 1572*5afab0e5SDag-Erling Smørgrav 1573*5afab0e5SDag-Erling Smørgrav# Use this tag to change the font size of LaTeX formulas included as images in 1574*5afab0e5SDag-Erling Smørgrav# the HTML documentation. When you change the font size after a successful 1575*5afab0e5SDag-Erling Smørgrav# doxygen run you need to manually remove any form_*.png images from the HTML 1576*5afab0e5SDag-Erling Smørgrav# output directory to force them to be regenerated. 1577*5afab0e5SDag-Erling Smørgrav# Minimum value: 8, maximum value: 50, default value: 10. 1578*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1579*5afab0e5SDag-Erling Smørgrav 1580*5afab0e5SDag-Erling SmørgravFORMULA_FONTSIZE = 10 1581*5afab0e5SDag-Erling Smørgrav 1582*5afab0e5SDag-Erling Smørgrav# Use the FORMULA_TRANSPARENT tag to determine whether or not the images 1583*5afab0e5SDag-Erling Smørgrav# generated for formulas are transparent PNGs. Transparent PNGs are not 1584*5afab0e5SDag-Erling Smørgrav# supported properly for IE 6.0, but are supported on all modern browsers. 1585*5afab0e5SDag-Erling Smørgrav# 1586*5afab0e5SDag-Erling Smørgrav# Note that when changing this option you need to delete any form_*.png files in 1587*5afab0e5SDag-Erling Smørgrav# the HTML output directory before the changes have effect. 1588*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1589*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1590*5afab0e5SDag-Erling Smørgrav 1591*5afab0e5SDag-Erling SmørgravFORMULA_TRANSPARENT = YES 1592*5afab0e5SDag-Erling Smørgrav 1593*5afab0e5SDag-Erling Smørgrav# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands 1594*5afab0e5SDag-Erling Smørgrav# to create new LaTeX commands to be used in formulas as building blocks. See 1595*5afab0e5SDag-Erling Smørgrav# the section "Including formulas" for details. 1596*5afab0e5SDag-Erling Smørgrav 1597*5afab0e5SDag-Erling SmørgravFORMULA_MACROFILE = 1598*5afab0e5SDag-Erling Smørgrav 1599*5afab0e5SDag-Erling Smørgrav# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see 1600*5afab0e5SDag-Erling Smørgrav# https://www.mathjax.org) which uses client side JavaScript for the rendering 1601*5afab0e5SDag-Erling Smørgrav# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX 1602*5afab0e5SDag-Erling Smørgrav# installed or if you want to formulas look prettier in the HTML output. When 1603*5afab0e5SDag-Erling Smørgrav# enabled you may also need to install MathJax separately and configure the path 1604*5afab0e5SDag-Erling Smørgrav# to it using the MATHJAX_RELPATH option. 1605*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1606*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1607*5afab0e5SDag-Erling Smørgrav 1608*5afab0e5SDag-Erling SmørgravUSE_MATHJAX = NO 1609*5afab0e5SDag-Erling Smørgrav 1610*5afab0e5SDag-Erling Smørgrav# When MathJax is enabled you can set the default output format to be used for 1611*5afab0e5SDag-Erling Smørgrav# the MathJax output. See the MathJax site (see: 1612*5afab0e5SDag-Erling Smørgrav# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. 1613*5afab0e5SDag-Erling Smørgrav# Possible values are: HTML-CSS (which is slower, but has the best 1614*5afab0e5SDag-Erling Smørgrav# compatibility), NativeMML (i.e. MathML) and SVG. 1615*5afab0e5SDag-Erling Smørgrav# The default value is: HTML-CSS. 1616*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag USE_MATHJAX is set to YES. 1617*5afab0e5SDag-Erling Smørgrav 1618*5afab0e5SDag-Erling SmørgravMATHJAX_FORMAT = HTML-CSS 1619*5afab0e5SDag-Erling Smørgrav 1620*5afab0e5SDag-Erling Smørgrav# When MathJax is enabled you need to specify the location relative to the HTML 1621*5afab0e5SDag-Erling Smørgrav# output directory using the MATHJAX_RELPATH option. The destination directory 1622*5afab0e5SDag-Erling Smørgrav# should contain the MathJax.js script. For instance, if the mathjax directory 1623*5afab0e5SDag-Erling Smørgrav# is located at the same level as the HTML output directory, then 1624*5afab0e5SDag-Erling Smørgrav# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax 1625*5afab0e5SDag-Erling Smørgrav# Content Delivery Network so you can quickly see the result without installing 1626*5afab0e5SDag-Erling Smørgrav# MathJax. However, it is strongly recommended to install a local copy of 1627*5afab0e5SDag-Erling Smørgrav# MathJax from https://www.mathjax.org before deployment. 1628*5afab0e5SDag-Erling Smørgrav# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. 1629*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag USE_MATHJAX is set to YES. 1630*5afab0e5SDag-Erling Smørgrav 1631*5afab0e5SDag-Erling SmørgravMATHJAX_RELPATH = http://www.mathjax.org/mathjax 1632*5afab0e5SDag-Erling Smørgrav 1633*5afab0e5SDag-Erling Smørgrav# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax 1634*5afab0e5SDag-Erling Smørgrav# extension names that should be enabled during MathJax rendering. For example 1635*5afab0e5SDag-Erling Smørgrav# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols 1636*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag USE_MATHJAX is set to YES. 1637*5afab0e5SDag-Erling Smørgrav 1638*5afab0e5SDag-Erling SmørgravMATHJAX_EXTENSIONS = 1639*5afab0e5SDag-Erling Smørgrav 1640*5afab0e5SDag-Erling Smørgrav# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces 1641*5afab0e5SDag-Erling Smørgrav# of code that will be used on startup of the MathJax code. See the MathJax site 1642*5afab0e5SDag-Erling Smørgrav# (see: 1643*5afab0e5SDag-Erling Smørgrav# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an 1644*5afab0e5SDag-Erling Smørgrav# example see the documentation. 1645*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag USE_MATHJAX is set to YES. 1646*5afab0e5SDag-Erling Smørgrav 1647*5afab0e5SDag-Erling SmørgravMATHJAX_CODEFILE = 1648*5afab0e5SDag-Erling Smørgrav 1649*5afab0e5SDag-Erling Smørgrav# When the SEARCHENGINE tag is enabled doxygen will generate a search box for 1650*5afab0e5SDag-Erling Smørgrav# the HTML output. The underlying search engine uses javascript and DHTML and 1651*5afab0e5SDag-Erling Smørgrav# should work on any modern browser. Note that when using HTML help 1652*5afab0e5SDag-Erling Smørgrav# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) 1653*5afab0e5SDag-Erling Smørgrav# there is already a search function so this one should typically be disabled. 1654*5afab0e5SDag-Erling Smørgrav# For large projects the javascript based search engine can be slow, then 1655*5afab0e5SDag-Erling Smørgrav# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to 1656*5afab0e5SDag-Erling Smørgrav# search using the keyboard; to jump to the search box use <access key> + S 1657*5afab0e5SDag-Erling Smørgrav# (what the <access key> is depends on the OS and browser, but it is typically 1658*5afab0e5SDag-Erling Smørgrav# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down 1659*5afab0e5SDag-Erling Smørgrav# key> to jump into the search results window, the results can be navigated 1660*5afab0e5SDag-Erling Smørgrav# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel 1661*5afab0e5SDag-Erling Smørgrav# the search. The filter options can be selected when the cursor is inside the 1662*5afab0e5SDag-Erling Smørgrav# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> 1663*5afab0e5SDag-Erling Smørgrav# to select a filter and <Enter> or <escape> to activate or cancel the filter 1664*5afab0e5SDag-Erling Smørgrav# option. 1665*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1666*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_HTML is set to YES. 1667*5afab0e5SDag-Erling Smørgrav 1668*5afab0e5SDag-Erling SmørgravSEARCHENGINE = NO 1669*5afab0e5SDag-Erling Smørgrav 1670*5afab0e5SDag-Erling Smørgrav# When the SERVER_BASED_SEARCH tag is enabled the search engine will be 1671*5afab0e5SDag-Erling Smørgrav# implemented using a web server instead of a web client using JavaScript. There 1672*5afab0e5SDag-Erling Smørgrav# are two flavors of web server based searching depending on the EXTERNAL_SEARCH 1673*5afab0e5SDag-Erling Smørgrav# setting. When disabled, doxygen will generate a PHP script for searching and 1674*5afab0e5SDag-Erling Smørgrav# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing 1675*5afab0e5SDag-Erling Smørgrav# and searching needs to be provided by external tools. See the section 1676*5afab0e5SDag-Erling Smørgrav# "External Indexing and Searching" for details. 1677*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1678*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag SEARCHENGINE is set to YES. 1679*5afab0e5SDag-Erling Smørgrav 1680*5afab0e5SDag-Erling SmørgravSERVER_BASED_SEARCH = NO 1681*5afab0e5SDag-Erling Smørgrav 1682*5afab0e5SDag-Erling Smørgrav# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP 1683*5afab0e5SDag-Erling Smørgrav# script for searching. Instead the search results are written to an XML file 1684*5afab0e5SDag-Erling Smørgrav# which needs to be processed by an external indexer. Doxygen will invoke an 1685*5afab0e5SDag-Erling Smørgrav# external search engine pointed to by the SEARCHENGINE_URL option to obtain the 1686*5afab0e5SDag-Erling Smørgrav# search results. 1687*5afab0e5SDag-Erling Smørgrav# 1688*5afab0e5SDag-Erling Smørgrav# Doxygen ships with an example indexer (doxyindexer) and search engine 1689*5afab0e5SDag-Erling Smørgrav# (doxysearch.cgi) which are based on the open source search engine library 1690*5afab0e5SDag-Erling Smørgrav# Xapian (see: 1691*5afab0e5SDag-Erling Smørgrav# https://xapian.org/). 1692*5afab0e5SDag-Erling Smørgrav# 1693*5afab0e5SDag-Erling Smørgrav# See the section "External Indexing and Searching" for details. 1694*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1695*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag SEARCHENGINE is set to YES. 1696*5afab0e5SDag-Erling Smørgrav 1697*5afab0e5SDag-Erling SmørgravEXTERNAL_SEARCH = NO 1698*5afab0e5SDag-Erling Smørgrav 1699*5afab0e5SDag-Erling Smørgrav# The SEARCHENGINE_URL should point to a search engine hosted by a web server 1700*5afab0e5SDag-Erling Smørgrav# which will return the search results when EXTERNAL_SEARCH is enabled. 1701*5afab0e5SDag-Erling Smørgrav# 1702*5afab0e5SDag-Erling Smørgrav# Doxygen ships with an example indexer (doxyindexer) and search engine 1703*5afab0e5SDag-Erling Smørgrav# (doxysearch.cgi) which are based on the open source search engine library 1704*5afab0e5SDag-Erling Smørgrav# Xapian (see: 1705*5afab0e5SDag-Erling Smørgrav# https://xapian.org/). See the section "External Indexing and Searching" for 1706*5afab0e5SDag-Erling Smørgrav# details. 1707*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag SEARCHENGINE is set to YES. 1708*5afab0e5SDag-Erling Smørgrav 1709*5afab0e5SDag-Erling SmørgravSEARCHENGINE_URL = 1710*5afab0e5SDag-Erling Smørgrav 1711*5afab0e5SDag-Erling Smørgrav# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed 1712*5afab0e5SDag-Erling Smørgrav# search data is written to a file for indexing by an external tool. With the 1713*5afab0e5SDag-Erling Smørgrav# SEARCHDATA_FILE tag the name of this file can be specified. 1714*5afab0e5SDag-Erling Smørgrav# The default file is: searchdata.xml. 1715*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag SEARCHENGINE is set to YES. 1716*5afab0e5SDag-Erling Smørgrav 1717*5afab0e5SDag-Erling SmørgravSEARCHDATA_FILE = searchdata.xml 1718*5afab0e5SDag-Erling Smørgrav 1719*5afab0e5SDag-Erling Smørgrav# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the 1720*5afab0e5SDag-Erling Smørgrav# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is 1721*5afab0e5SDag-Erling Smørgrav# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple 1722*5afab0e5SDag-Erling Smørgrav# projects and redirect the results back to the right project. 1723*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag SEARCHENGINE is set to YES. 1724*5afab0e5SDag-Erling Smørgrav 1725*5afab0e5SDag-Erling SmørgravEXTERNAL_SEARCH_ID = 1726*5afab0e5SDag-Erling Smørgrav 1727*5afab0e5SDag-Erling Smørgrav# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen 1728*5afab0e5SDag-Erling Smørgrav# projects other than the one defined by this configuration file, but that are 1729*5afab0e5SDag-Erling Smørgrav# all added to the same external search index. Each project needs to have a 1730*5afab0e5SDag-Erling Smørgrav# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of 1731*5afab0e5SDag-Erling Smørgrav# to a relative location where the documentation can be found. The format is: 1732*5afab0e5SDag-Erling Smørgrav# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... 1733*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag SEARCHENGINE is set to YES. 1734*5afab0e5SDag-Erling Smørgrav 1735*5afab0e5SDag-Erling SmørgravEXTRA_SEARCH_MAPPINGS = 1736*5afab0e5SDag-Erling Smørgrav 1737*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1738*5afab0e5SDag-Erling Smørgrav# Configuration options related to the LaTeX output 1739*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1740*5afab0e5SDag-Erling Smørgrav 1741*5afab0e5SDag-Erling Smørgrav# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. 1742*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1743*5afab0e5SDag-Erling Smørgrav 1744*5afab0e5SDag-Erling SmørgravGENERATE_LATEX = NO 1745*5afab0e5SDag-Erling Smørgrav 1746*5afab0e5SDag-Erling Smørgrav# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a 1747*5afab0e5SDag-Erling Smørgrav# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1748*5afab0e5SDag-Erling Smørgrav# it. 1749*5afab0e5SDag-Erling Smørgrav# The default directory is: latex. 1750*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1751*5afab0e5SDag-Erling Smørgrav 1752*5afab0e5SDag-Erling SmørgravLATEX_OUTPUT = latex 1753*5afab0e5SDag-Erling Smørgrav 1754*5afab0e5SDag-Erling Smørgrav# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 1755*5afab0e5SDag-Erling Smørgrav# invoked. 1756*5afab0e5SDag-Erling Smørgrav# 1757*5afab0e5SDag-Erling Smørgrav# Note that when not enabling USE_PDFLATEX the default is latex when enabling 1758*5afab0e5SDag-Erling Smørgrav# USE_PDFLATEX the default is pdflatex and when in the later case latex is 1759*5afab0e5SDag-Erling Smørgrav# chosen this is overwritten by pdflatex. For specific output languages the 1760*5afab0e5SDag-Erling Smørgrav# default can have been set differently, this depends on the implementation of 1761*5afab0e5SDag-Erling Smørgrav# the output language. 1762*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1763*5afab0e5SDag-Erling Smørgrav 1764*5afab0e5SDag-Erling SmørgravLATEX_CMD_NAME = latex 1765*5afab0e5SDag-Erling Smørgrav 1766*5afab0e5SDag-Erling Smørgrav# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate 1767*5afab0e5SDag-Erling Smørgrav# index for LaTeX. 1768*5afab0e5SDag-Erling Smørgrav# Note: This tag is used in the Makefile / make.bat. 1769*5afab0e5SDag-Erling Smørgrav# See also: LATEX_MAKEINDEX_CMD for the part in the generated output file 1770*5afab0e5SDag-Erling Smørgrav# (.tex). 1771*5afab0e5SDag-Erling Smørgrav# The default file is: makeindex. 1772*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1773*5afab0e5SDag-Erling Smørgrav 1774*5afab0e5SDag-Erling SmørgravMAKEINDEX_CMD_NAME = makeindex 1775*5afab0e5SDag-Erling Smørgrav 1776*5afab0e5SDag-Erling Smørgrav# The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to 1777*5afab0e5SDag-Erling Smørgrav# generate index for LaTeX. In case there is no backslash (\) as first character 1778*5afab0e5SDag-Erling Smørgrav# it will be automatically added in the LaTeX code. 1779*5afab0e5SDag-Erling Smørgrav# Note: This tag is used in the generated output file (.tex). 1780*5afab0e5SDag-Erling Smørgrav# See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat. 1781*5afab0e5SDag-Erling Smørgrav# The default value is: makeindex. 1782*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1783*5afab0e5SDag-Erling Smørgrav 1784*5afab0e5SDag-Erling SmørgravLATEX_MAKEINDEX_CMD = makeindex 1785*5afab0e5SDag-Erling Smørgrav 1786*5afab0e5SDag-Erling Smørgrav# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX 1787*5afab0e5SDag-Erling Smørgrav# documents. This may be useful for small projects and may help to save some 1788*5afab0e5SDag-Erling Smørgrav# trees in general. 1789*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1790*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1791*5afab0e5SDag-Erling Smørgrav 1792*5afab0e5SDag-Erling SmørgravCOMPACT_LATEX = NO 1793*5afab0e5SDag-Erling Smørgrav 1794*5afab0e5SDag-Erling Smørgrav# The PAPER_TYPE tag can be used to set the paper type that is used by the 1795*5afab0e5SDag-Erling Smørgrav# printer. 1796*5afab0e5SDag-Erling Smørgrav# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x 1797*5afab0e5SDag-Erling Smørgrav# 14 inches) and executive (7.25 x 10.5 inches). 1798*5afab0e5SDag-Erling Smørgrav# The default value is: a4. 1799*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1800*5afab0e5SDag-Erling Smørgrav 1801*5afab0e5SDag-Erling SmørgravPAPER_TYPE = a4wide 1802*5afab0e5SDag-Erling Smørgrav 1803*5afab0e5SDag-Erling Smørgrav# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names 1804*5afab0e5SDag-Erling Smørgrav# that should be included in the LaTeX output. The package can be specified just 1805*5afab0e5SDag-Erling Smørgrav# by its name or with the correct syntax as to be used with the LaTeX 1806*5afab0e5SDag-Erling Smørgrav# \usepackage command. To get the times font for instance you can specify : 1807*5afab0e5SDag-Erling Smørgrav# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times} 1808*5afab0e5SDag-Erling Smørgrav# To use the option intlimits with the amsmath package you can specify: 1809*5afab0e5SDag-Erling Smørgrav# EXTRA_PACKAGES=[intlimits]{amsmath} 1810*5afab0e5SDag-Erling Smørgrav# If left blank no extra packages will be included. 1811*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1812*5afab0e5SDag-Erling Smørgrav 1813*5afab0e5SDag-Erling SmørgravEXTRA_PACKAGES = 1814*5afab0e5SDag-Erling Smørgrav 1815*5afab0e5SDag-Erling Smørgrav# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the 1816*5afab0e5SDag-Erling Smørgrav# generated LaTeX document. The header should contain everything until the first 1817*5afab0e5SDag-Erling Smørgrav# chapter. If it is left blank doxygen will generate a standard header. See 1818*5afab0e5SDag-Erling Smørgrav# section "Doxygen usage" for information on how to let doxygen write the 1819*5afab0e5SDag-Erling Smørgrav# default header to a separate file. 1820*5afab0e5SDag-Erling Smørgrav# 1821*5afab0e5SDag-Erling Smørgrav# Note: Only use a user-defined header if you know what you are doing! The 1822*5afab0e5SDag-Erling Smørgrav# following commands have a special meaning inside the header: $title, 1823*5afab0e5SDag-Erling Smørgrav# $datetime, $date, $doxygenversion, $projectname, $projectnumber, 1824*5afab0e5SDag-Erling Smørgrav# $projectbrief, $projectlogo. Doxygen will replace $title with the empty 1825*5afab0e5SDag-Erling Smørgrav# string, for the replacement values of the other commands the user is referred 1826*5afab0e5SDag-Erling Smørgrav# to HTML_HEADER. 1827*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1828*5afab0e5SDag-Erling Smørgrav 1829*5afab0e5SDag-Erling SmørgravLATEX_HEADER = 1830*5afab0e5SDag-Erling Smørgrav 1831*5afab0e5SDag-Erling Smørgrav# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the 1832*5afab0e5SDag-Erling Smørgrav# generated LaTeX document. The footer should contain everything after the last 1833*5afab0e5SDag-Erling Smørgrav# chapter. If it is left blank doxygen will generate a standard footer. See 1834*5afab0e5SDag-Erling Smørgrav# LATEX_HEADER for more information on how to generate a default footer and what 1835*5afab0e5SDag-Erling Smørgrav# special commands can be used inside the footer. 1836*5afab0e5SDag-Erling Smørgrav# 1837*5afab0e5SDag-Erling Smørgrav# Note: Only use a user-defined footer if you know what you are doing! 1838*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1839*5afab0e5SDag-Erling Smørgrav 1840*5afab0e5SDag-Erling SmørgravLATEX_FOOTER = 1841*5afab0e5SDag-Erling Smørgrav 1842*5afab0e5SDag-Erling Smørgrav# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined 1843*5afab0e5SDag-Erling Smørgrav# LaTeX style sheets that are included after the standard style sheets created 1844*5afab0e5SDag-Erling Smørgrav# by doxygen. Using this option one can overrule certain style aspects. Doxygen 1845*5afab0e5SDag-Erling Smørgrav# will copy the style sheet files to the output directory. 1846*5afab0e5SDag-Erling Smørgrav# Note: The order of the extra style sheet files is of importance (e.g. the last 1847*5afab0e5SDag-Erling Smørgrav# style sheet in the list overrules the setting of the previous ones in the 1848*5afab0e5SDag-Erling Smørgrav# list). 1849*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1850*5afab0e5SDag-Erling Smørgrav 1851*5afab0e5SDag-Erling SmørgravLATEX_EXTRA_STYLESHEET = 1852*5afab0e5SDag-Erling Smørgrav 1853*5afab0e5SDag-Erling Smørgrav# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or 1854*5afab0e5SDag-Erling Smørgrav# other source files which should be copied to the LATEX_OUTPUT output 1855*5afab0e5SDag-Erling Smørgrav# directory. Note that the files will be copied as-is; there are no commands or 1856*5afab0e5SDag-Erling Smørgrav# markers available. 1857*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1858*5afab0e5SDag-Erling Smørgrav 1859*5afab0e5SDag-Erling SmørgravLATEX_EXTRA_FILES = 1860*5afab0e5SDag-Erling Smørgrav 1861*5afab0e5SDag-Erling Smørgrav# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is 1862*5afab0e5SDag-Erling Smørgrav# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will 1863*5afab0e5SDag-Erling Smørgrav# contain links (just like the HTML output) instead of page references. This 1864*5afab0e5SDag-Erling Smørgrav# makes the output suitable for online browsing using a PDF viewer. 1865*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1866*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1867*5afab0e5SDag-Erling Smørgrav 1868*5afab0e5SDag-Erling SmørgravPDF_HYPERLINKS = YES 1869*5afab0e5SDag-Erling Smørgrav 1870*5afab0e5SDag-Erling Smørgrav# If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as 1871*5afab0e5SDag-Erling Smørgrav# specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX 1872*5afab0e5SDag-Erling Smørgrav# files. Set this option to YES, to get a higher quality PDF documentation. 1873*5afab0e5SDag-Erling Smørgrav# 1874*5afab0e5SDag-Erling Smørgrav# See also section LATEX_CMD_NAME for selecting the engine. 1875*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 1876*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1877*5afab0e5SDag-Erling Smørgrav 1878*5afab0e5SDag-Erling SmørgravUSE_PDFLATEX = YES 1879*5afab0e5SDag-Erling Smørgrav 1880*5afab0e5SDag-Erling Smørgrav# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode 1881*5afab0e5SDag-Erling Smørgrav# command to the generated LaTeX files. This will instruct LaTeX to keep running 1882*5afab0e5SDag-Erling Smørgrav# if errors occur, instead of asking the user for help. This option is also used 1883*5afab0e5SDag-Erling Smørgrav# when generating formulas in HTML. 1884*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1885*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1886*5afab0e5SDag-Erling Smørgrav 1887*5afab0e5SDag-Erling SmørgravLATEX_BATCHMODE = YES 1888*5afab0e5SDag-Erling Smørgrav 1889*5afab0e5SDag-Erling Smørgrav# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the 1890*5afab0e5SDag-Erling Smørgrav# index chapters (such as File Index, Compound Index, etc.) in the output. 1891*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1892*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1893*5afab0e5SDag-Erling Smørgrav 1894*5afab0e5SDag-Erling SmørgravLATEX_HIDE_INDICES = NO 1895*5afab0e5SDag-Erling Smørgrav 1896*5afab0e5SDag-Erling Smørgrav# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source 1897*5afab0e5SDag-Erling Smørgrav# code with syntax highlighting in the LaTeX output. 1898*5afab0e5SDag-Erling Smørgrav# 1899*5afab0e5SDag-Erling Smørgrav# Note that which sources are shown also depends on other settings such as 1900*5afab0e5SDag-Erling Smørgrav# SOURCE_BROWSER. 1901*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1902*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1903*5afab0e5SDag-Erling Smørgrav 1904*5afab0e5SDag-Erling SmørgravLATEX_SOURCE_CODE = NO 1905*5afab0e5SDag-Erling Smørgrav 1906*5afab0e5SDag-Erling Smørgrav# The LATEX_BIB_STYLE tag can be used to specify the style to use for the 1907*5afab0e5SDag-Erling Smørgrav# bibliography, e.g. plainnat, or ieeetr. See 1908*5afab0e5SDag-Erling Smørgrav# https://en.wikipedia.org/wiki/BibTeX and \cite for more info. 1909*5afab0e5SDag-Erling Smørgrav# The default value is: plain. 1910*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1911*5afab0e5SDag-Erling Smørgrav 1912*5afab0e5SDag-Erling SmørgravLATEX_BIB_STYLE = plain 1913*5afab0e5SDag-Erling Smørgrav 1914*5afab0e5SDag-Erling Smørgrav# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated 1915*5afab0e5SDag-Erling Smørgrav# page will contain the date and time when the page was generated. Setting this 1916*5afab0e5SDag-Erling Smørgrav# to NO can help when comparing the output of multiple runs. 1917*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1918*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1919*5afab0e5SDag-Erling Smørgrav 1920*5afab0e5SDag-Erling SmørgravLATEX_TIMESTAMP = NO 1921*5afab0e5SDag-Erling Smørgrav 1922*5afab0e5SDag-Erling Smørgrav# The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute) 1923*5afab0e5SDag-Erling Smørgrav# path from which the emoji images will be read. If a relative path is entered, 1924*5afab0e5SDag-Erling Smørgrav# it will be relative to the LATEX_OUTPUT directory. If left blank the 1925*5afab0e5SDag-Erling Smørgrav# LATEX_OUTPUT directory will be used. 1926*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_LATEX is set to YES. 1927*5afab0e5SDag-Erling Smørgrav 1928*5afab0e5SDag-Erling SmørgravLATEX_EMOJI_DIRECTORY = 1929*5afab0e5SDag-Erling Smørgrav 1930*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1931*5afab0e5SDag-Erling Smørgrav# Configuration options related to the RTF output 1932*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1933*5afab0e5SDag-Erling Smørgrav 1934*5afab0e5SDag-Erling Smørgrav# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The 1935*5afab0e5SDag-Erling Smørgrav# RTF output is optimized for Word 97 and may not look too pretty with other RTF 1936*5afab0e5SDag-Erling Smørgrav# readers/editors. 1937*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1938*5afab0e5SDag-Erling Smørgrav 1939*5afab0e5SDag-Erling SmørgravGENERATE_RTF = NO 1940*5afab0e5SDag-Erling Smørgrav 1941*5afab0e5SDag-Erling Smørgrav# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a 1942*5afab0e5SDag-Erling Smørgrav# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 1943*5afab0e5SDag-Erling Smørgrav# it. 1944*5afab0e5SDag-Erling Smørgrav# The default directory is: rtf. 1945*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_RTF is set to YES. 1946*5afab0e5SDag-Erling Smørgrav 1947*5afab0e5SDag-Erling SmørgravRTF_OUTPUT = rtf 1948*5afab0e5SDag-Erling Smørgrav 1949*5afab0e5SDag-Erling Smørgrav# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF 1950*5afab0e5SDag-Erling Smørgrav# documents. This may be useful for small projects and may help to save some 1951*5afab0e5SDag-Erling Smørgrav# trees in general. 1952*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1953*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_RTF is set to YES. 1954*5afab0e5SDag-Erling Smørgrav 1955*5afab0e5SDag-Erling SmørgravCOMPACT_RTF = NO 1956*5afab0e5SDag-Erling Smørgrav 1957*5afab0e5SDag-Erling Smørgrav# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will 1958*5afab0e5SDag-Erling Smørgrav# contain hyperlink fields. The RTF file will contain links (just like the HTML 1959*5afab0e5SDag-Erling Smørgrav# output) instead of page references. This makes the output suitable for online 1960*5afab0e5SDag-Erling Smørgrav# browsing using Word or some other Word compatible readers that support those 1961*5afab0e5SDag-Erling Smørgrav# fields. 1962*5afab0e5SDag-Erling Smørgrav# 1963*5afab0e5SDag-Erling Smørgrav# Note: WordPad (write) and others do not support links. 1964*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1965*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_RTF is set to YES. 1966*5afab0e5SDag-Erling Smørgrav 1967*5afab0e5SDag-Erling SmørgravRTF_HYPERLINKS = NO 1968*5afab0e5SDag-Erling Smørgrav 1969*5afab0e5SDag-Erling Smørgrav# Load stylesheet definitions from file. Syntax is similar to doxygen's 1970*5afab0e5SDag-Erling Smørgrav# configuration file, i.e. a series of assignments. You only have to provide 1971*5afab0e5SDag-Erling Smørgrav# replacements, missing definitions are set to their default value. 1972*5afab0e5SDag-Erling Smørgrav# 1973*5afab0e5SDag-Erling Smørgrav# See also section "Doxygen usage" for information on how to generate the 1974*5afab0e5SDag-Erling Smørgrav# default style sheet that doxygen normally uses. 1975*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_RTF is set to YES. 1976*5afab0e5SDag-Erling Smørgrav 1977*5afab0e5SDag-Erling SmørgravRTF_STYLESHEET_FILE = 1978*5afab0e5SDag-Erling Smørgrav 1979*5afab0e5SDag-Erling Smørgrav# Set optional variables used in the generation of an RTF document. Syntax is 1980*5afab0e5SDag-Erling Smørgrav# similar to doxygen's configuration file. A template extensions file can be 1981*5afab0e5SDag-Erling Smørgrav# generated using doxygen -e rtf extensionFile. 1982*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_RTF is set to YES. 1983*5afab0e5SDag-Erling Smørgrav 1984*5afab0e5SDag-Erling SmørgravRTF_EXTENSIONS_FILE = 1985*5afab0e5SDag-Erling Smørgrav 1986*5afab0e5SDag-Erling Smørgrav# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code 1987*5afab0e5SDag-Erling Smørgrav# with syntax highlighting in the RTF output. 1988*5afab0e5SDag-Erling Smørgrav# 1989*5afab0e5SDag-Erling Smørgrav# Note that which sources are shown also depends on other settings such as 1990*5afab0e5SDag-Erling Smørgrav# SOURCE_BROWSER. 1991*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 1992*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_RTF is set to YES. 1993*5afab0e5SDag-Erling Smørgrav 1994*5afab0e5SDag-Erling SmørgravRTF_SOURCE_CODE = NO 1995*5afab0e5SDag-Erling Smørgrav 1996*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1997*5afab0e5SDag-Erling Smørgrav# Configuration options related to the man page output 1998*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 1999*5afab0e5SDag-Erling Smørgrav 2000*5afab0e5SDag-Erling Smørgrav# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for 2001*5afab0e5SDag-Erling Smørgrav# classes and files. 2002*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2003*5afab0e5SDag-Erling Smørgrav 2004*5afab0e5SDag-Erling SmørgravGENERATE_MAN = NO 2005*5afab0e5SDag-Erling Smørgrav 2006*5afab0e5SDag-Erling Smørgrav# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a 2007*5afab0e5SDag-Erling Smørgrav# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 2008*5afab0e5SDag-Erling Smørgrav# it. A directory man3 will be created inside the directory specified by 2009*5afab0e5SDag-Erling Smørgrav# MAN_OUTPUT. 2010*5afab0e5SDag-Erling Smørgrav# The default directory is: man. 2011*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_MAN is set to YES. 2012*5afab0e5SDag-Erling Smørgrav 2013*5afab0e5SDag-Erling SmørgravMAN_OUTPUT = man 2014*5afab0e5SDag-Erling Smørgrav 2015*5afab0e5SDag-Erling Smørgrav# The MAN_EXTENSION tag determines the extension that is added to the generated 2016*5afab0e5SDag-Erling Smørgrav# man pages. In case the manual section does not start with a number, the number 2017*5afab0e5SDag-Erling Smørgrav# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is 2018*5afab0e5SDag-Erling Smørgrav# optional. 2019*5afab0e5SDag-Erling Smørgrav# The default value is: .3. 2020*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_MAN is set to YES. 2021*5afab0e5SDag-Erling Smørgrav 2022*5afab0e5SDag-Erling SmørgravMAN_EXTENSION = .3 2023*5afab0e5SDag-Erling Smørgrav 2024*5afab0e5SDag-Erling Smørgrav# The MAN_SUBDIR tag determines the name of the directory created within 2025*5afab0e5SDag-Erling Smørgrav# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by 2026*5afab0e5SDag-Erling Smørgrav# MAN_EXTENSION with the initial . removed. 2027*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_MAN is set to YES. 2028*5afab0e5SDag-Erling Smørgrav 2029*5afab0e5SDag-Erling SmørgravMAN_SUBDIR = 2030*5afab0e5SDag-Erling Smørgrav 2031*5afab0e5SDag-Erling Smørgrav# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it 2032*5afab0e5SDag-Erling Smørgrav# will generate one additional man file for each entity documented in the real 2033*5afab0e5SDag-Erling Smørgrav# man page(s). These additional files only source the real man page, but without 2034*5afab0e5SDag-Erling Smørgrav# them the man command would be unable to find the correct page. 2035*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2036*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_MAN is set to YES. 2037*5afab0e5SDag-Erling Smørgrav 2038*5afab0e5SDag-Erling SmørgravMAN_LINKS = NO 2039*5afab0e5SDag-Erling Smørgrav 2040*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2041*5afab0e5SDag-Erling Smørgrav# Configuration options related to the XML output 2042*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2043*5afab0e5SDag-Erling Smørgrav 2044*5afab0e5SDag-Erling Smørgrav# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that 2045*5afab0e5SDag-Erling Smørgrav# captures the structure of the code including all documentation. 2046*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2047*5afab0e5SDag-Erling Smørgrav 2048*5afab0e5SDag-Erling SmørgravGENERATE_XML = NO 2049*5afab0e5SDag-Erling Smørgrav 2050*5afab0e5SDag-Erling Smørgrav# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a 2051*5afab0e5SDag-Erling Smørgrav# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of 2052*5afab0e5SDag-Erling Smørgrav# it. 2053*5afab0e5SDag-Erling Smørgrav# The default directory is: xml. 2054*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_XML is set to YES. 2055*5afab0e5SDag-Erling Smørgrav 2056*5afab0e5SDag-Erling SmørgravXML_OUTPUT = xml 2057*5afab0e5SDag-Erling Smørgrav 2058*5afab0e5SDag-Erling Smørgrav# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program 2059*5afab0e5SDag-Erling Smørgrav# listings (including syntax highlighting and cross-referencing information) to 2060*5afab0e5SDag-Erling Smørgrav# the XML output. Note that enabling this will significantly increase the size 2061*5afab0e5SDag-Erling Smørgrav# of the XML output. 2062*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2063*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_XML is set to YES. 2064*5afab0e5SDag-Erling Smørgrav 2065*5afab0e5SDag-Erling SmørgravXML_PROGRAMLISTING = YES 2066*5afab0e5SDag-Erling Smørgrav 2067*5afab0e5SDag-Erling Smørgrav# If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include 2068*5afab0e5SDag-Erling Smørgrav# namespace members in file scope as well, matching the HTML output. 2069*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2070*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_XML is set to YES. 2071*5afab0e5SDag-Erling Smørgrav 2072*5afab0e5SDag-Erling SmørgravXML_NS_MEMB_FILE_SCOPE = NO 2073*5afab0e5SDag-Erling Smørgrav 2074*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2075*5afab0e5SDag-Erling Smørgrav# Configuration options related to the DOCBOOK output 2076*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2077*5afab0e5SDag-Erling Smørgrav 2078*5afab0e5SDag-Erling Smørgrav# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files 2079*5afab0e5SDag-Erling Smørgrav# that can be used to generate PDF. 2080*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2081*5afab0e5SDag-Erling Smørgrav 2082*5afab0e5SDag-Erling SmørgravGENERATE_DOCBOOK = NO 2083*5afab0e5SDag-Erling Smørgrav 2084*5afab0e5SDag-Erling Smørgrav# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. 2085*5afab0e5SDag-Erling Smørgrav# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in 2086*5afab0e5SDag-Erling Smørgrav# front of it. 2087*5afab0e5SDag-Erling Smørgrav# The default directory is: docbook. 2088*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_DOCBOOK is set to YES. 2089*5afab0e5SDag-Erling Smørgrav 2090*5afab0e5SDag-Erling SmørgravDOCBOOK_OUTPUT = docbook 2091*5afab0e5SDag-Erling Smørgrav 2092*5afab0e5SDag-Erling Smørgrav# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the 2093*5afab0e5SDag-Erling Smørgrav# program listings (including syntax highlighting and cross-referencing 2094*5afab0e5SDag-Erling Smørgrav# information) to the DOCBOOK output. Note that enabling this will significantly 2095*5afab0e5SDag-Erling Smørgrav# increase the size of the DOCBOOK output. 2096*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2097*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_DOCBOOK is set to YES. 2098*5afab0e5SDag-Erling Smørgrav 2099*5afab0e5SDag-Erling SmørgravDOCBOOK_PROGRAMLISTING = NO 2100*5afab0e5SDag-Erling Smørgrav 2101*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2102*5afab0e5SDag-Erling Smørgrav# Configuration options for the AutoGen Definitions output 2103*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2104*5afab0e5SDag-Erling Smørgrav 2105*5afab0e5SDag-Erling Smørgrav# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an 2106*5afab0e5SDag-Erling Smørgrav# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures 2107*5afab0e5SDag-Erling Smørgrav# the structure of the code including all documentation. Note that this feature 2108*5afab0e5SDag-Erling Smørgrav# is still experimental and incomplete at the moment. 2109*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2110*5afab0e5SDag-Erling Smørgrav 2111*5afab0e5SDag-Erling SmørgravGENERATE_AUTOGEN_DEF = NO 2112*5afab0e5SDag-Erling Smørgrav 2113*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2114*5afab0e5SDag-Erling Smørgrav# Configuration options related to the Perl module output 2115*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2116*5afab0e5SDag-Erling Smørgrav 2117*5afab0e5SDag-Erling Smørgrav# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module 2118*5afab0e5SDag-Erling Smørgrav# file that captures the structure of the code including all documentation. 2119*5afab0e5SDag-Erling Smørgrav# 2120*5afab0e5SDag-Erling Smørgrav# Note that this feature is still experimental and incomplete at the moment. 2121*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2122*5afab0e5SDag-Erling Smørgrav 2123*5afab0e5SDag-Erling SmørgravGENERATE_PERLMOD = NO 2124*5afab0e5SDag-Erling Smørgrav 2125*5afab0e5SDag-Erling Smørgrav# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary 2126*5afab0e5SDag-Erling Smørgrav# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI 2127*5afab0e5SDag-Erling Smørgrav# output from the Perl module output. 2128*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2129*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_PERLMOD is set to YES. 2130*5afab0e5SDag-Erling Smørgrav 2131*5afab0e5SDag-Erling SmørgravPERLMOD_LATEX = NO 2132*5afab0e5SDag-Erling Smørgrav 2133*5afab0e5SDag-Erling Smørgrav# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely 2134*5afab0e5SDag-Erling Smørgrav# formatted so it can be parsed by a human reader. This is useful if you want to 2135*5afab0e5SDag-Erling Smørgrav# understand what is going on. On the other hand, if this tag is set to NO, the 2136*5afab0e5SDag-Erling Smørgrav# size of the Perl module output will be much smaller and Perl will parse it 2137*5afab0e5SDag-Erling Smørgrav# just the same. 2138*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2139*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_PERLMOD is set to YES. 2140*5afab0e5SDag-Erling Smørgrav 2141*5afab0e5SDag-Erling SmørgravPERLMOD_PRETTY = YES 2142*5afab0e5SDag-Erling Smørgrav 2143*5afab0e5SDag-Erling Smørgrav# The names of the make variables in the generated doxyrules.make file are 2144*5afab0e5SDag-Erling Smørgrav# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful 2145*5afab0e5SDag-Erling Smørgrav# so different doxyrules.make files included by the same Makefile don't 2146*5afab0e5SDag-Erling Smørgrav# overwrite each other's variables. 2147*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag GENERATE_PERLMOD is set to YES. 2148*5afab0e5SDag-Erling Smørgrav 2149*5afab0e5SDag-Erling SmørgravPERLMOD_MAKEVAR_PREFIX = 2150*5afab0e5SDag-Erling Smørgrav 2151*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2152*5afab0e5SDag-Erling Smørgrav# Configuration options related to the preprocessor 2153*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2154*5afab0e5SDag-Erling Smørgrav 2155*5afab0e5SDag-Erling Smørgrav# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all 2156*5afab0e5SDag-Erling Smørgrav# C-preprocessor directives found in the sources and include files. 2157*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2158*5afab0e5SDag-Erling Smørgrav 2159*5afab0e5SDag-Erling SmørgravENABLE_PREPROCESSING = YES 2160*5afab0e5SDag-Erling Smørgrav 2161*5afab0e5SDag-Erling Smørgrav# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names 2162*5afab0e5SDag-Erling Smørgrav# in the source code. If set to NO, only conditional compilation will be 2163*5afab0e5SDag-Erling Smørgrav# performed. Macro expansion can be done in a controlled way by setting 2164*5afab0e5SDag-Erling Smørgrav# EXPAND_ONLY_PREDEF to YES. 2165*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2166*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2167*5afab0e5SDag-Erling Smørgrav 2168*5afab0e5SDag-Erling SmørgravMACRO_EXPANSION = YES 2169*5afab0e5SDag-Erling Smørgrav 2170*5afab0e5SDag-Erling Smørgrav# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then 2171*5afab0e5SDag-Erling Smørgrav# the macro expansion is limited to the macros specified with the PREDEFINED and 2172*5afab0e5SDag-Erling Smørgrav# EXPAND_AS_DEFINED tags. 2173*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2174*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2175*5afab0e5SDag-Erling Smørgrav 2176*5afab0e5SDag-Erling SmørgravEXPAND_ONLY_PREDEF = NO 2177*5afab0e5SDag-Erling Smørgrav 2178*5afab0e5SDag-Erling Smørgrav# If the SEARCH_INCLUDES tag is set to YES, the include files in the 2179*5afab0e5SDag-Erling Smørgrav# INCLUDE_PATH will be searched if a #include is found. 2180*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2181*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2182*5afab0e5SDag-Erling Smørgrav 2183*5afab0e5SDag-Erling SmørgravSEARCH_INCLUDES = YES 2184*5afab0e5SDag-Erling Smørgrav 2185*5afab0e5SDag-Erling Smørgrav# The INCLUDE_PATH tag can be used to specify one or more directories that 2186*5afab0e5SDag-Erling Smørgrav# contain include files that are not input files but should be processed by the 2187*5afab0e5SDag-Erling Smørgrav# preprocessor. 2188*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag SEARCH_INCLUDES is set to YES. 2189*5afab0e5SDag-Erling Smørgrav 2190*5afab0e5SDag-Erling SmørgravINCLUDE_PATH = . 2191*5afab0e5SDag-Erling Smørgrav 2192*5afab0e5SDag-Erling Smørgrav# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 2193*5afab0e5SDag-Erling Smørgrav# patterns (like *.h and *.hpp) to filter out the header-files in the 2194*5afab0e5SDag-Erling Smørgrav# directories. If left blank, the patterns specified with FILE_PATTERNS will be 2195*5afab0e5SDag-Erling Smørgrav# used. 2196*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2197*5afab0e5SDag-Erling Smørgrav 2198*5afab0e5SDag-Erling SmørgravINCLUDE_FILE_PATTERNS = 2199*5afab0e5SDag-Erling Smørgrav 2200*5afab0e5SDag-Erling Smørgrav# The PREDEFINED tag can be used to specify one or more macro names that are 2201*5afab0e5SDag-Erling Smørgrav# defined before the preprocessor is started (similar to the -D option of e.g. 2202*5afab0e5SDag-Erling Smørgrav# gcc). The argument of the tag is a list of macros of the form: name or 2203*5afab0e5SDag-Erling Smørgrav# name=definition (no spaces). If the definition and the "=" are omitted, "=1" 2204*5afab0e5SDag-Erling Smørgrav# is assumed. To prevent a macro definition from being undefined via #undef or 2205*5afab0e5SDag-Erling Smørgrav# recursively expanded use the := operator instead of the = operator. 2206*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2207*5afab0e5SDag-Erling Smørgrav 2208*5afab0e5SDag-Erling SmørgravPREDEFINED = HAVE_SSL 2209*5afab0e5SDag-Erling Smørgrav 2210*5afab0e5SDag-Erling Smørgrav# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this 2211*5afab0e5SDag-Erling Smørgrav# tag can be used to specify a list of macro names that should be expanded. The 2212*5afab0e5SDag-Erling Smørgrav# macro definition that is found in the sources will be used. Use the PREDEFINED 2213*5afab0e5SDag-Erling Smørgrav# tag if you want to use a different macro definition that overrules the 2214*5afab0e5SDag-Erling Smørgrav# definition found in the source code. 2215*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2216*5afab0e5SDag-Erling Smørgrav 2217*5afab0e5SDag-Erling SmørgravEXPAND_AS_DEFINED = 2218*5afab0e5SDag-Erling Smørgrav 2219*5afab0e5SDag-Erling Smørgrav# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will 2220*5afab0e5SDag-Erling Smørgrav# remove all references to function-like macros that are alone on a line, have 2221*5afab0e5SDag-Erling Smørgrav# an all uppercase name, and do not end with a semicolon. Such function macros 2222*5afab0e5SDag-Erling Smørgrav# are typically used for boiler-plate code, and will confuse the parser if not 2223*5afab0e5SDag-Erling Smørgrav# removed. 2224*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2225*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. 2226*5afab0e5SDag-Erling Smørgrav 2227*5afab0e5SDag-Erling SmørgravSKIP_FUNCTION_MACROS = YES 2228*5afab0e5SDag-Erling Smørgrav 2229*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2230*5afab0e5SDag-Erling Smørgrav# Configuration options related to external references 2231*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2232*5afab0e5SDag-Erling Smørgrav 2233*5afab0e5SDag-Erling Smørgrav# The TAGFILES tag can be used to specify one or more tag files. For each tag 2234*5afab0e5SDag-Erling Smørgrav# file the location of the external documentation should be added. The format of 2235*5afab0e5SDag-Erling Smørgrav# a tag file without this location is as follows: 2236*5afab0e5SDag-Erling Smørgrav# TAGFILES = file1 file2 ... 2237*5afab0e5SDag-Erling Smørgrav# Adding location for the tag files is done as follows: 2238*5afab0e5SDag-Erling Smørgrav# TAGFILES = file1=loc1 "file2 = loc2" ... 2239*5afab0e5SDag-Erling Smørgrav# where loc1 and loc2 can be relative or absolute paths or URLs. See the 2240*5afab0e5SDag-Erling Smørgrav# section "Linking to external documentation" for more information about the use 2241*5afab0e5SDag-Erling Smørgrav# of tag files. 2242*5afab0e5SDag-Erling Smørgrav# Note: Each tag file must have a unique name (where the name does NOT include 2243*5afab0e5SDag-Erling Smørgrav# the path). If a tag file is not located in the directory in which doxygen is 2244*5afab0e5SDag-Erling Smørgrav# run, you must also specify the path to the tagfile here. 2245*5afab0e5SDag-Erling Smørgrav 2246*5afab0e5SDag-Erling SmørgravTAGFILES = 2247*5afab0e5SDag-Erling Smørgrav 2248*5afab0e5SDag-Erling Smørgrav# When a file name is specified after GENERATE_TAGFILE, doxygen will create a 2249*5afab0e5SDag-Erling Smørgrav# tag file that is based on the input files it reads. See section "Linking to 2250*5afab0e5SDag-Erling Smørgrav# external documentation" for more information about the usage of tag files. 2251*5afab0e5SDag-Erling Smørgrav 2252*5afab0e5SDag-Erling SmørgravGENERATE_TAGFILE = 2253*5afab0e5SDag-Erling Smørgrav 2254*5afab0e5SDag-Erling Smørgrav# If the ALLEXTERNALS tag is set to YES, all external class will be listed in 2255*5afab0e5SDag-Erling Smørgrav# the class index. If set to NO, only the inherited external classes will be 2256*5afab0e5SDag-Erling Smørgrav# listed. 2257*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2258*5afab0e5SDag-Erling Smørgrav 2259*5afab0e5SDag-Erling SmørgravALLEXTERNALS = NO 2260*5afab0e5SDag-Erling Smørgrav 2261*5afab0e5SDag-Erling Smørgrav# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed 2262*5afab0e5SDag-Erling Smørgrav# in the modules index. If set to NO, only the current project's groups will be 2263*5afab0e5SDag-Erling Smørgrav# listed. 2264*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2265*5afab0e5SDag-Erling Smørgrav 2266*5afab0e5SDag-Erling SmørgravEXTERNAL_GROUPS = YES 2267*5afab0e5SDag-Erling Smørgrav 2268*5afab0e5SDag-Erling Smørgrav# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in 2269*5afab0e5SDag-Erling Smørgrav# the related pages index. If set to NO, only the current project's pages will 2270*5afab0e5SDag-Erling Smørgrav# be listed. 2271*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2272*5afab0e5SDag-Erling Smørgrav 2273*5afab0e5SDag-Erling SmørgravEXTERNAL_PAGES = YES 2274*5afab0e5SDag-Erling Smørgrav 2275*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2276*5afab0e5SDag-Erling Smørgrav# Configuration options related to the dot tool 2277*5afab0e5SDag-Erling Smørgrav#--------------------------------------------------------------------------- 2278*5afab0e5SDag-Erling Smørgrav 2279*5afab0e5SDag-Erling Smørgrav# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram 2280*5afab0e5SDag-Erling Smørgrav# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to 2281*5afab0e5SDag-Erling Smørgrav# NO turns the diagrams off. Note that this option also works with HAVE_DOT 2282*5afab0e5SDag-Erling Smørgrav# disabled, but it is recommended to install and use dot, since it yields more 2283*5afab0e5SDag-Erling Smørgrav# powerful graphs. 2284*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2285*5afab0e5SDag-Erling Smørgrav 2286*5afab0e5SDag-Erling SmørgravCLASS_DIAGRAMS = YES 2287*5afab0e5SDag-Erling Smørgrav 2288*5afab0e5SDag-Erling Smørgrav# You can include diagrams made with dia in doxygen documentation. Doxygen will 2289*5afab0e5SDag-Erling Smørgrav# then run dia to produce the diagram and insert it in the documentation. The 2290*5afab0e5SDag-Erling Smørgrav# DIA_PATH tag allows you to specify the directory where the dia binary resides. 2291*5afab0e5SDag-Erling Smørgrav# If left empty dia is assumed to be found in the default search path. 2292*5afab0e5SDag-Erling Smørgrav 2293*5afab0e5SDag-Erling SmørgravDIA_PATH = 2294*5afab0e5SDag-Erling Smørgrav 2295*5afab0e5SDag-Erling Smørgrav# If set to YES the inheritance and collaboration graphs will hide inheritance 2296*5afab0e5SDag-Erling Smørgrav# and usage relations if the target is undocumented or is not a class. 2297*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2298*5afab0e5SDag-Erling Smørgrav 2299*5afab0e5SDag-Erling SmørgravHIDE_UNDOC_RELATIONS = YES 2300*5afab0e5SDag-Erling Smørgrav 2301*5afab0e5SDag-Erling Smørgrav# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 2302*5afab0e5SDag-Erling Smørgrav# available from the path. This tool is part of Graphviz (see: 2303*5afab0e5SDag-Erling Smørgrav# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent 2304*5afab0e5SDag-Erling Smørgrav# Bell Labs. The other options in this section have no effect if this option is 2305*5afab0e5SDag-Erling Smørgrav# set to NO 2306*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2307*5afab0e5SDag-Erling Smørgrav 2308*5afab0e5SDag-Erling SmørgravHAVE_DOT = NO 2309*5afab0e5SDag-Erling Smørgrav 2310*5afab0e5SDag-Erling Smørgrav# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed 2311*5afab0e5SDag-Erling Smørgrav# to run in parallel. When set to 0 doxygen will base this on the number of 2312*5afab0e5SDag-Erling Smørgrav# processors available in the system. You can set it explicitly to a value 2313*5afab0e5SDag-Erling Smørgrav# larger than 0 to get control over the balance between CPU load and processing 2314*5afab0e5SDag-Erling Smørgrav# speed. 2315*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 32, default value: 0. 2316*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2317*5afab0e5SDag-Erling Smørgrav 2318*5afab0e5SDag-Erling SmørgravDOT_NUM_THREADS = 0 2319*5afab0e5SDag-Erling Smørgrav 2320*5afab0e5SDag-Erling Smørgrav# When you want a differently looking font in the dot files that doxygen 2321*5afab0e5SDag-Erling Smørgrav# generates you can specify the font name using DOT_FONTNAME. You need to make 2322*5afab0e5SDag-Erling Smørgrav# sure dot is able to find the font, which can be done by putting it in a 2323*5afab0e5SDag-Erling Smørgrav# standard location or by setting the DOTFONTPATH environment variable or by 2324*5afab0e5SDag-Erling Smørgrav# setting DOT_FONTPATH to the directory containing the font. 2325*5afab0e5SDag-Erling Smørgrav# The default value is: Helvetica. 2326*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2327*5afab0e5SDag-Erling Smørgrav 2328*5afab0e5SDag-Erling SmørgravDOT_FONTNAME = Helvetica 2329*5afab0e5SDag-Erling Smørgrav 2330*5afab0e5SDag-Erling Smørgrav# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of 2331*5afab0e5SDag-Erling Smørgrav# dot graphs. 2332*5afab0e5SDag-Erling Smørgrav# Minimum value: 4, maximum value: 24, default value: 10. 2333*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2334*5afab0e5SDag-Erling Smørgrav 2335*5afab0e5SDag-Erling SmørgravDOT_FONTSIZE = 10 2336*5afab0e5SDag-Erling Smørgrav 2337*5afab0e5SDag-Erling Smørgrav# By default doxygen will tell dot to use the default font as specified with 2338*5afab0e5SDag-Erling Smørgrav# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set 2339*5afab0e5SDag-Erling Smørgrav# the path where dot can find it using this tag. 2340*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2341*5afab0e5SDag-Erling Smørgrav 2342*5afab0e5SDag-Erling SmørgravDOT_FONTPATH = 2343*5afab0e5SDag-Erling Smørgrav 2344*5afab0e5SDag-Erling Smørgrav# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for 2345*5afab0e5SDag-Erling Smørgrav# each documented class showing the direct and indirect inheritance relations. 2346*5afab0e5SDag-Erling Smørgrav# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. 2347*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2348*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2349*5afab0e5SDag-Erling Smørgrav 2350*5afab0e5SDag-Erling SmørgravCLASS_GRAPH = YES 2351*5afab0e5SDag-Erling Smørgrav 2352*5afab0e5SDag-Erling Smørgrav# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a 2353*5afab0e5SDag-Erling Smørgrav# graph for each documented class showing the direct and indirect implementation 2354*5afab0e5SDag-Erling Smørgrav# dependencies (inheritance, containment, and class references variables) of the 2355*5afab0e5SDag-Erling Smørgrav# class with other documented classes. 2356*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2357*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2358*5afab0e5SDag-Erling Smørgrav 2359*5afab0e5SDag-Erling SmørgravCOLLABORATION_GRAPH = YES 2360*5afab0e5SDag-Erling Smørgrav 2361*5afab0e5SDag-Erling Smørgrav# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for 2362*5afab0e5SDag-Erling Smørgrav# groups, showing the direct groups dependencies. 2363*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2364*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2365*5afab0e5SDag-Erling Smørgrav 2366*5afab0e5SDag-Erling SmørgravGROUP_GRAPHS = YES 2367*5afab0e5SDag-Erling Smørgrav 2368*5afab0e5SDag-Erling Smørgrav# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and 2369*5afab0e5SDag-Erling Smørgrav# collaboration diagrams in a style similar to the OMG's Unified Modeling 2370*5afab0e5SDag-Erling Smørgrav# Language. 2371*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2372*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2373*5afab0e5SDag-Erling Smørgrav 2374*5afab0e5SDag-Erling SmørgravUML_LOOK = NO 2375*5afab0e5SDag-Erling Smørgrav 2376*5afab0e5SDag-Erling Smørgrav# If the UML_LOOK tag is enabled, the fields and methods are shown inside the 2377*5afab0e5SDag-Erling Smørgrav# class node. If there are many fields or methods and many nodes the graph may 2378*5afab0e5SDag-Erling Smørgrav# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the 2379*5afab0e5SDag-Erling Smørgrav# number of items for each type to make the size more manageable. Set this to 0 2380*5afab0e5SDag-Erling Smørgrav# for no limit. Note that the threshold may be exceeded by 50% before the limit 2381*5afab0e5SDag-Erling Smørgrav# is enforced. So when you set the threshold to 10, up to 15 fields may appear, 2382*5afab0e5SDag-Erling Smørgrav# but if the number exceeds 15, the total amount of fields shown is limited to 2383*5afab0e5SDag-Erling Smørgrav# 10. 2384*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 100, default value: 10. 2385*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag UML_LOOK is set to YES. 2386*5afab0e5SDag-Erling Smørgrav 2387*5afab0e5SDag-Erling SmørgravUML_LIMIT_NUM_FIELDS = 10 2388*5afab0e5SDag-Erling Smørgrav 2389*5afab0e5SDag-Erling Smørgrav# If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and 2390*5afab0e5SDag-Erling Smørgrav# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS 2391*5afab0e5SDag-Erling Smørgrav# tag is set to YES, doxygen will add type and arguments for attributes and 2392*5afab0e5SDag-Erling Smørgrav# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen 2393*5afab0e5SDag-Erling Smørgrav# will not generate fields with class member information in the UML graphs. The 2394*5afab0e5SDag-Erling Smørgrav# class diagrams will look similar to the default class diagrams but using UML 2395*5afab0e5SDag-Erling Smørgrav# notation for the relationships. 2396*5afab0e5SDag-Erling Smørgrav# Possible values are: NO, YES and NONE. 2397*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2398*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag UML_LOOK is set to YES. 2399*5afab0e5SDag-Erling Smørgrav 2400*5afab0e5SDag-Erling SmørgravDOT_UML_DETAILS = NO 2401*5afab0e5SDag-Erling Smørgrav 2402*5afab0e5SDag-Erling Smørgrav# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters 2403*5afab0e5SDag-Erling Smørgrav# to display on a single line. If the actual line length exceeds this threshold 2404*5afab0e5SDag-Erling Smørgrav# significantly it will wrapped across multiple lines. Some heuristics are apply 2405*5afab0e5SDag-Erling Smørgrav# to avoid ugly line breaks. 2406*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 1000, default value: 17. 2407*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2408*5afab0e5SDag-Erling Smørgrav 2409*5afab0e5SDag-Erling SmørgravDOT_WRAP_THRESHOLD = 17 2410*5afab0e5SDag-Erling Smørgrav 2411*5afab0e5SDag-Erling Smørgrav# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and 2412*5afab0e5SDag-Erling Smørgrav# collaboration graphs will show the relations between templates and their 2413*5afab0e5SDag-Erling Smørgrav# instances. 2414*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2415*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2416*5afab0e5SDag-Erling Smørgrav 2417*5afab0e5SDag-Erling SmørgravTEMPLATE_RELATIONS = NO 2418*5afab0e5SDag-Erling Smørgrav 2419*5afab0e5SDag-Erling Smørgrav# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to 2420*5afab0e5SDag-Erling Smørgrav# YES then doxygen will generate a graph for each documented file showing the 2421*5afab0e5SDag-Erling Smørgrav# direct and indirect include dependencies of the file with other documented 2422*5afab0e5SDag-Erling Smørgrav# files. 2423*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2424*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2425*5afab0e5SDag-Erling Smørgrav 2426*5afab0e5SDag-Erling SmørgravINCLUDE_GRAPH = YES 2427*5afab0e5SDag-Erling Smørgrav 2428*5afab0e5SDag-Erling Smørgrav# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are 2429*5afab0e5SDag-Erling Smørgrav# set to YES then doxygen will generate a graph for each documented file showing 2430*5afab0e5SDag-Erling Smørgrav# the direct and indirect include dependencies of the file with other documented 2431*5afab0e5SDag-Erling Smørgrav# files. 2432*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2433*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2434*5afab0e5SDag-Erling Smørgrav 2435*5afab0e5SDag-Erling SmørgravINCLUDED_BY_GRAPH = YES 2436*5afab0e5SDag-Erling Smørgrav 2437*5afab0e5SDag-Erling Smørgrav# If the CALL_GRAPH tag is set to YES then doxygen will generate a call 2438*5afab0e5SDag-Erling Smørgrav# dependency graph for every global function or class method. 2439*5afab0e5SDag-Erling Smørgrav# 2440*5afab0e5SDag-Erling Smørgrav# Note that enabling this option will significantly increase the time of a run. 2441*5afab0e5SDag-Erling Smørgrav# So in most cases it will be better to enable call graphs for selected 2442*5afab0e5SDag-Erling Smørgrav# functions only using the \callgraph command. Disabling a call graph can be 2443*5afab0e5SDag-Erling Smørgrav# accomplished by means of the command \hidecallgraph. 2444*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2445*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2446*5afab0e5SDag-Erling Smørgrav 2447*5afab0e5SDag-Erling SmørgravCALL_GRAPH = YES 2448*5afab0e5SDag-Erling Smørgrav 2449*5afab0e5SDag-Erling Smørgrav# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller 2450*5afab0e5SDag-Erling Smørgrav# dependency graph for every global function or class method. 2451*5afab0e5SDag-Erling Smørgrav# 2452*5afab0e5SDag-Erling Smørgrav# Note that enabling this option will significantly increase the time of a run. 2453*5afab0e5SDag-Erling Smørgrav# So in most cases it will be better to enable caller graphs for selected 2454*5afab0e5SDag-Erling Smørgrav# functions only using the \callergraph command. Disabling a caller graph can be 2455*5afab0e5SDag-Erling Smørgrav# accomplished by means of the command \hidecallergraph. 2456*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2457*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2458*5afab0e5SDag-Erling Smørgrav 2459*5afab0e5SDag-Erling SmørgravCALLER_GRAPH = NO 2460*5afab0e5SDag-Erling Smørgrav 2461*5afab0e5SDag-Erling Smørgrav# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical 2462*5afab0e5SDag-Erling Smørgrav# hierarchy of all classes instead of a textual one. 2463*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2464*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2465*5afab0e5SDag-Erling Smørgrav 2466*5afab0e5SDag-Erling SmørgravGRAPHICAL_HIERARCHY = YES 2467*5afab0e5SDag-Erling Smørgrav 2468*5afab0e5SDag-Erling Smørgrav# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the 2469*5afab0e5SDag-Erling Smørgrav# dependencies a directory has on other directories in a graphical way. The 2470*5afab0e5SDag-Erling Smørgrav# dependency relations are determined by the #include relations between the 2471*5afab0e5SDag-Erling Smørgrav# files in the directories. 2472*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2473*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2474*5afab0e5SDag-Erling Smørgrav 2475*5afab0e5SDag-Erling SmørgravDIRECTORY_GRAPH = YES 2476*5afab0e5SDag-Erling Smørgrav 2477*5afab0e5SDag-Erling Smørgrav# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 2478*5afab0e5SDag-Erling Smørgrav# generated by dot. For an explanation of the image formats see the section 2479*5afab0e5SDag-Erling Smørgrav# output formats in the documentation of the dot tool (Graphviz (see: 2480*5afab0e5SDag-Erling Smørgrav# http://www.graphviz.org/)). 2481*5afab0e5SDag-Erling Smørgrav# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order 2482*5afab0e5SDag-Erling Smørgrav# to make the SVG files visible in IE 9+ (other browsers do not have this 2483*5afab0e5SDag-Erling Smørgrav# requirement). 2484*5afab0e5SDag-Erling Smørgrav# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, 2485*5afab0e5SDag-Erling Smørgrav# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, 2486*5afab0e5SDag-Erling Smørgrav# gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo, 2487*5afab0e5SDag-Erling Smørgrav# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and 2488*5afab0e5SDag-Erling Smørgrav# png:gdiplus:gdiplus. 2489*5afab0e5SDag-Erling Smørgrav# The default value is: png. 2490*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2491*5afab0e5SDag-Erling Smørgrav 2492*5afab0e5SDag-Erling SmørgravDOT_IMAGE_FORMAT = png 2493*5afab0e5SDag-Erling Smørgrav 2494*5afab0e5SDag-Erling Smørgrav# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to 2495*5afab0e5SDag-Erling Smørgrav# enable generation of interactive SVG images that allow zooming and panning. 2496*5afab0e5SDag-Erling Smørgrav# 2497*5afab0e5SDag-Erling Smørgrav# Note that this requires a modern browser other than Internet Explorer. Tested 2498*5afab0e5SDag-Erling Smørgrav# and working are Firefox, Chrome, Safari, and Opera. 2499*5afab0e5SDag-Erling Smørgrav# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make 2500*5afab0e5SDag-Erling Smørgrav# the SVG files visible. Older versions of IE do not have SVG support. 2501*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2502*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2503*5afab0e5SDag-Erling Smørgrav 2504*5afab0e5SDag-Erling SmørgravINTERACTIVE_SVG = NO 2505*5afab0e5SDag-Erling Smørgrav 2506*5afab0e5SDag-Erling Smørgrav# The DOT_PATH tag can be used to specify the path where the dot tool can be 2507*5afab0e5SDag-Erling Smørgrav# found. If left blank, it is assumed the dot tool can be found in the path. 2508*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2509*5afab0e5SDag-Erling Smørgrav 2510*5afab0e5SDag-Erling SmørgravDOT_PATH = 2511*5afab0e5SDag-Erling Smørgrav 2512*5afab0e5SDag-Erling Smørgrav# The DOTFILE_DIRS tag can be used to specify one or more directories that 2513*5afab0e5SDag-Erling Smørgrav# contain dot files that are included in the documentation (see the \dotfile 2514*5afab0e5SDag-Erling Smørgrav# command). 2515*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2516*5afab0e5SDag-Erling Smørgrav 2517*5afab0e5SDag-Erling SmørgravDOTFILE_DIRS = 2518*5afab0e5SDag-Erling Smørgrav 2519*5afab0e5SDag-Erling Smørgrav# The MSCFILE_DIRS tag can be used to specify one or more directories that 2520*5afab0e5SDag-Erling Smørgrav# contain msc files that are included in the documentation (see the \mscfile 2521*5afab0e5SDag-Erling Smørgrav# command). 2522*5afab0e5SDag-Erling Smørgrav 2523*5afab0e5SDag-Erling SmørgravMSCFILE_DIRS = 2524*5afab0e5SDag-Erling Smørgrav 2525*5afab0e5SDag-Erling Smørgrav# The DIAFILE_DIRS tag can be used to specify one or more directories that 2526*5afab0e5SDag-Erling Smørgrav# contain dia files that are included in the documentation (see the \diafile 2527*5afab0e5SDag-Erling Smørgrav# command). 2528*5afab0e5SDag-Erling Smørgrav 2529*5afab0e5SDag-Erling SmørgravDIAFILE_DIRS = 2530*5afab0e5SDag-Erling Smørgrav 2531*5afab0e5SDag-Erling Smørgrav# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the 2532*5afab0e5SDag-Erling Smørgrav# path where java can find the plantuml.jar file. If left blank, it is assumed 2533*5afab0e5SDag-Erling Smørgrav# PlantUML is not used or called during a preprocessing step. Doxygen will 2534*5afab0e5SDag-Erling Smørgrav# generate a warning when it encounters a \startuml command in this case and 2535*5afab0e5SDag-Erling Smørgrav# will not generate output for the diagram. 2536*5afab0e5SDag-Erling Smørgrav 2537*5afab0e5SDag-Erling SmørgravPLANTUML_JAR_PATH = 2538*5afab0e5SDag-Erling Smørgrav 2539*5afab0e5SDag-Erling Smørgrav# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a 2540*5afab0e5SDag-Erling Smørgrav# configuration file for plantuml. 2541*5afab0e5SDag-Erling Smørgrav 2542*5afab0e5SDag-Erling SmørgravPLANTUML_CFG_FILE = 2543*5afab0e5SDag-Erling Smørgrav 2544*5afab0e5SDag-Erling Smørgrav# When using plantuml, the specified paths are searched for files specified by 2545*5afab0e5SDag-Erling Smørgrav# the !include statement in a plantuml block. 2546*5afab0e5SDag-Erling Smørgrav 2547*5afab0e5SDag-Erling SmørgravPLANTUML_INCLUDE_PATH = 2548*5afab0e5SDag-Erling Smørgrav 2549*5afab0e5SDag-Erling Smørgrav# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes 2550*5afab0e5SDag-Erling Smørgrav# that will be shown in the graph. If the number of nodes in a graph becomes 2551*5afab0e5SDag-Erling Smørgrav# larger than this value, doxygen will truncate the graph, which is visualized 2552*5afab0e5SDag-Erling Smørgrav# by representing a node as a red box. Note that doxygen if the number of direct 2553*5afab0e5SDag-Erling Smørgrav# children of the root node in a graph is already larger than 2554*5afab0e5SDag-Erling Smørgrav# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that 2555*5afab0e5SDag-Erling Smørgrav# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 2556*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 10000, default value: 50. 2557*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2558*5afab0e5SDag-Erling Smørgrav 2559*5afab0e5SDag-Erling SmørgravDOT_GRAPH_MAX_NODES = 50 2560*5afab0e5SDag-Erling Smørgrav 2561*5afab0e5SDag-Erling Smørgrav# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs 2562*5afab0e5SDag-Erling Smørgrav# generated by dot. A depth value of 3 means that only nodes reachable from the 2563*5afab0e5SDag-Erling Smørgrav# root by following a path via at most 3 edges will be shown. Nodes that lay 2564*5afab0e5SDag-Erling Smørgrav# further from the root node will be omitted. Note that setting this option to 1 2565*5afab0e5SDag-Erling Smørgrav# or 2 may greatly reduce the computation time needed for large code bases. Also 2566*5afab0e5SDag-Erling Smørgrav# note that the size of a graph can be further restricted by 2567*5afab0e5SDag-Erling Smørgrav# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 2568*5afab0e5SDag-Erling Smørgrav# Minimum value: 0, maximum value: 1000, default value: 0. 2569*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2570*5afab0e5SDag-Erling Smørgrav 2571*5afab0e5SDag-Erling SmørgravMAX_DOT_GRAPH_DEPTH = 0 2572*5afab0e5SDag-Erling Smørgrav 2573*5afab0e5SDag-Erling Smørgrav# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 2574*5afab0e5SDag-Erling Smørgrav# background. This is disabled by default, because dot on Windows does not seem 2575*5afab0e5SDag-Erling Smørgrav# to support this out of the box. 2576*5afab0e5SDag-Erling Smørgrav# 2577*5afab0e5SDag-Erling Smørgrav# Warning: Depending on the platform used, enabling this option may lead to 2578*5afab0e5SDag-Erling Smørgrav# badly anti-aliased labels on the edges of a graph (i.e. they become hard to 2579*5afab0e5SDag-Erling Smørgrav# read). 2580*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2581*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2582*5afab0e5SDag-Erling Smørgrav 2583*5afab0e5SDag-Erling SmørgravDOT_TRANSPARENT = NO 2584*5afab0e5SDag-Erling Smørgrav 2585*5afab0e5SDag-Erling Smørgrav# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output 2586*5afab0e5SDag-Erling Smørgrav# files in one run (i.e. multiple -o and -T options on the command line). This 2587*5afab0e5SDag-Erling Smørgrav# makes dot run faster, but since only newer versions of dot (>1.8.10) support 2588*5afab0e5SDag-Erling Smørgrav# this, this feature is disabled by default. 2589*5afab0e5SDag-Erling Smørgrav# The default value is: NO. 2590*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2591*5afab0e5SDag-Erling Smørgrav 2592*5afab0e5SDag-Erling SmørgravDOT_MULTI_TARGETS = YES 2593*5afab0e5SDag-Erling Smørgrav 2594*5afab0e5SDag-Erling Smørgrav# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page 2595*5afab0e5SDag-Erling Smørgrav# explaining the meaning of the various boxes and arrows in the dot generated 2596*5afab0e5SDag-Erling Smørgrav# graphs. 2597*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2598*5afab0e5SDag-Erling Smørgrav# This tag requires that the tag HAVE_DOT is set to YES. 2599*5afab0e5SDag-Erling Smørgrav 2600*5afab0e5SDag-Erling SmørgravGENERATE_LEGEND = YES 2601*5afab0e5SDag-Erling Smørgrav 2602*5afab0e5SDag-Erling Smørgrav# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate 2603*5afab0e5SDag-Erling Smørgrav# files that are used to generate the various graphs. 2604*5afab0e5SDag-Erling Smørgrav# 2605*5afab0e5SDag-Erling Smørgrav# Note: This setting is not only used for dot files but also for msc and 2606*5afab0e5SDag-Erling Smørgrav# plantuml temporary files. 2607*5afab0e5SDag-Erling Smørgrav# The default value is: YES. 2608*5afab0e5SDag-Erling Smørgrav 2609*5afab0e5SDag-Erling SmørgravDOT_CLEANUP = YES 2610