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