1*00b67f09SDavid van Moolenbroek# Id: Doxyfile.in,v 1.2 2006/12/22 01:44:59 marka Exp 2*00b67f09SDavid van Moolenbroek 3*00b67f09SDavid van Moolenbroek# Doxyfile 1.4.7 4*00b67f09SDavid van Moolenbroek 5*00b67f09SDavid van Moolenbroek# This file describes the settings to be used by the documentation system 6*00b67f09SDavid van Moolenbroek# doxygen (www.doxygen.org) for a project 7*00b67f09SDavid van Moolenbroek# 8*00b67f09SDavid van Moolenbroek# All text after a hash (#) is considered a comment and will be ignored 9*00b67f09SDavid van Moolenbroek# The format is: 10*00b67f09SDavid van Moolenbroek# TAG = value [value, ...] 11*00b67f09SDavid van Moolenbroek# For lists items can also be appended using: 12*00b67f09SDavid van Moolenbroek# TAG += value [value, ...] 13*00b67f09SDavid van Moolenbroek# Values that contain spaces should be placed between quotes (" ") 14*00b67f09SDavid van Moolenbroek 15*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 16*00b67f09SDavid van Moolenbroek# Project related configuration options 17*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 18*00b67f09SDavid van Moolenbroek 19*00b67f09SDavid van Moolenbroek# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 20*00b67f09SDavid van Moolenbroek# by quotes) that should identify the project. 21*00b67f09SDavid van Moolenbroek 22*00b67f09SDavid van MoolenbroekPROJECT_NAME = "BIND9 Internals" 23*00b67f09SDavid van Moolenbroek 24*00b67f09SDavid van Moolenbroek# The PROJECT_NUMBER tag can be used to enter a project or revision number. 25*00b67f09SDavid van Moolenbroek# This could be handy for archiving the generated documentation or 26*00b67f09SDavid van Moolenbroek# if some version control system is used. 27*00b67f09SDavid van Moolenbroek 28*00b67f09SDavid van MoolenbroekPROJECT_NUMBER = $(BIND9_VERSION) 29*00b67f09SDavid van Moolenbroek 30*00b67f09SDavid van Moolenbroek# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 31*00b67f09SDavid van Moolenbroek# base path where the generated documentation will be put. 32*00b67f09SDavid van Moolenbroek# If a relative path is entered, it will be relative to the location 33*00b67f09SDavid van Moolenbroek# where doxygen was started. If left blank the current directory will be used. 34*00b67f09SDavid van Moolenbroek 35*00b67f09SDavid van MoolenbroekOUTPUT_DIRECTORY = 36*00b67f09SDavid van Moolenbroek 37*00b67f09SDavid van Moolenbroek# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 38*00b67f09SDavid van Moolenbroek# 4096 sub-directories (in 2 levels) under the output directory of each output 39*00b67f09SDavid van Moolenbroek# format and will distribute the generated files over these directories. 40*00b67f09SDavid van Moolenbroek# Enabling this option can be useful when feeding doxygen a huge amount of 41*00b67f09SDavid van Moolenbroek# source files, where putting all generated files in the same directory would 42*00b67f09SDavid van Moolenbroek# otherwise cause performance problems for the file system. 43*00b67f09SDavid van Moolenbroek 44*00b67f09SDavid van MoolenbroekCREATE_SUBDIRS = NO 45*00b67f09SDavid van Moolenbroek 46*00b67f09SDavid van Moolenbroek# The OUTPUT_LANGUAGE tag is used to specify the language in which all 47*00b67f09SDavid van Moolenbroek# documentation generated by doxygen is written. Doxygen will use this 48*00b67f09SDavid van Moolenbroek# information to generate all constant output in the proper language. 49*00b67f09SDavid van Moolenbroek# The default language is English, other supported languages are: 50*00b67f09SDavid van Moolenbroek# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, 51*00b67f09SDavid van Moolenbroek# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, 52*00b67f09SDavid van Moolenbroek# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, 53*00b67f09SDavid van Moolenbroek# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, 54*00b67f09SDavid van Moolenbroek# Swedish, and Ukrainian. 55*00b67f09SDavid van Moolenbroek 56*00b67f09SDavid van MoolenbroekOUTPUT_LANGUAGE = English 57*00b67f09SDavid van Moolenbroek 58*00b67f09SDavid van Moolenbroek# This tag can be used to specify the encoding used in the generated output. 59*00b67f09SDavid van Moolenbroek# The encoding is not always determined by the language that is chosen, 60*00b67f09SDavid van Moolenbroek# but also whether or not the output is meant for Windows or non-Windows users. 61*00b67f09SDavid van Moolenbroek# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES 62*00b67f09SDavid van Moolenbroek# forces the Windows encoding (this is the default for the Windows binary), 63*00b67f09SDavid van Moolenbroek# whereas setting the tag to NO uses a Unix-style encoding (the default for 64*00b67f09SDavid van Moolenbroek# all platforms other than Windows). 65*00b67f09SDavid van Moolenbroek 66*00b67f09SDavid van MoolenbroekUSE_WINDOWS_ENCODING = NO 67*00b67f09SDavid van Moolenbroek 68*00b67f09SDavid van Moolenbroek# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 69*00b67f09SDavid van Moolenbroek# include brief member descriptions after the members that are listed in 70*00b67f09SDavid van Moolenbroek# the file and class documentation (similar to JavaDoc). 71*00b67f09SDavid van Moolenbroek# Set to NO to disable this. 72*00b67f09SDavid van Moolenbroek 73*00b67f09SDavid van MoolenbroekBRIEF_MEMBER_DESC = YES 74*00b67f09SDavid van Moolenbroek 75*00b67f09SDavid van Moolenbroek# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 76*00b67f09SDavid van Moolenbroek# the brief description of a member or function before the detailed description. 77*00b67f09SDavid van Moolenbroek# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 78*00b67f09SDavid van Moolenbroek# brief descriptions will be completely suppressed. 79*00b67f09SDavid van Moolenbroek 80*00b67f09SDavid van MoolenbroekREPEAT_BRIEF = YES 81*00b67f09SDavid van Moolenbroek 82*00b67f09SDavid van Moolenbroek# This tag implements a quasi-intelligent brief description abbreviator 83*00b67f09SDavid van Moolenbroek# that is used to form the text in various listings. Each string 84*00b67f09SDavid van Moolenbroek# in this list, if found as the leading text of the brief description, will be 85*00b67f09SDavid van Moolenbroek# stripped from the text and the result after processing the whole list, is 86*00b67f09SDavid van Moolenbroek# used as the annotated text. Otherwise, the brief description is used as-is. 87*00b67f09SDavid van Moolenbroek# If left blank, the following values are used ("$name" is automatically 88*00b67f09SDavid van Moolenbroek# replaced with the name of the entity): "The $name class" "The $name widget" 89*00b67f09SDavid van Moolenbroek# "The $name file" "is" "provides" "specifies" "contains" 90*00b67f09SDavid van Moolenbroek# "represents" "a" "an" "the" 91*00b67f09SDavid van Moolenbroek 92*00b67f09SDavid van MoolenbroekABBREVIATE_BRIEF = 93*00b67f09SDavid van Moolenbroek 94*00b67f09SDavid van Moolenbroek# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 95*00b67f09SDavid van Moolenbroek# Doxygen will generate a detailed section even if there is only a brief 96*00b67f09SDavid van Moolenbroek# description. 97*00b67f09SDavid van Moolenbroek 98*00b67f09SDavid van MoolenbroekALWAYS_DETAILED_SEC = NO 99*00b67f09SDavid van Moolenbroek 100*00b67f09SDavid van Moolenbroek# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 101*00b67f09SDavid van Moolenbroek# inherited members of a class in the documentation of that class as if those 102*00b67f09SDavid van Moolenbroek# members were ordinary class members. Constructors, destructors and assignment 103*00b67f09SDavid van Moolenbroek# operators of the base classes will not be shown. 104*00b67f09SDavid van Moolenbroek 105*00b67f09SDavid van MoolenbroekINLINE_INHERITED_MEMB = NO 106*00b67f09SDavid van Moolenbroek 107*00b67f09SDavid van Moolenbroek# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 108*00b67f09SDavid van Moolenbroek# path before files name in the file list and in the header files. If set 109*00b67f09SDavid van Moolenbroek# to NO the shortest path that makes the file name unique will be used. 110*00b67f09SDavid van Moolenbroek 111*00b67f09SDavid van MoolenbroekFULL_PATH_NAMES = YES 112*00b67f09SDavid van Moolenbroek 113*00b67f09SDavid van Moolenbroek# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 114*00b67f09SDavid van Moolenbroek# can be used to strip a user-defined part of the path. Stripping is 115*00b67f09SDavid van Moolenbroek# only done if one of the specified strings matches the left-hand part of 116*00b67f09SDavid van Moolenbroek# the path. The tag can be used to show relative paths in the file list. 117*00b67f09SDavid van Moolenbroek# If left blank the directory from which doxygen is run is used as the 118*00b67f09SDavid van Moolenbroek# path to strip. 119*00b67f09SDavid van Moolenbroek 120*00b67f09SDavid van MoolenbroekSTRIP_FROM_PATH = @BIND9_TOP_BUILDDIR@/ 121*00b67f09SDavid van Moolenbroek 122*00b67f09SDavid van Moolenbroek# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 123*00b67f09SDavid van Moolenbroek# the path mentioned in the documentation of a class, which tells 124*00b67f09SDavid van Moolenbroek# the reader which header file to include in order to use a class. 125*00b67f09SDavid van Moolenbroek# If left blank only the name of the header file containing the class 126*00b67f09SDavid van Moolenbroek# definition is used. Otherwise one should specify the include paths that 127*00b67f09SDavid van Moolenbroek# are normally passed to the compiler using the -I flag. 128*00b67f09SDavid van Moolenbroek 129*00b67f09SDavid van MoolenbroekSTRIP_FROM_INC_PATH = 130*00b67f09SDavid van Moolenbroek 131*00b67f09SDavid van Moolenbroek# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 132*00b67f09SDavid van Moolenbroek# (but less readable) file names. This can be useful is your file systems 133*00b67f09SDavid van Moolenbroek# doesn't support long names like on DOS, Mac, or CD-ROM. 134*00b67f09SDavid van Moolenbroek 135*00b67f09SDavid van MoolenbroekSHORT_NAMES = NO 136*00b67f09SDavid van Moolenbroek 137*00b67f09SDavid van Moolenbroek# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 138*00b67f09SDavid van Moolenbroek# will interpret the first line (until the first dot) of a JavaDoc-style 139*00b67f09SDavid van Moolenbroek# comment as the brief description. If set to NO, the JavaDoc 140*00b67f09SDavid van Moolenbroek# comments will behave just like the Qt-style comments (thus requiring an 141*00b67f09SDavid van Moolenbroek# explicit @brief command for a brief description. 142*00b67f09SDavid van Moolenbroek 143*00b67f09SDavid van MoolenbroekJAVADOC_AUTOBRIEF = NO 144*00b67f09SDavid van Moolenbroek 145*00b67f09SDavid van Moolenbroek# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 146*00b67f09SDavid van Moolenbroek# treat a multi-line C++ special comment block (i.e. a block of //! or /// 147*00b67f09SDavid van Moolenbroek# comments) as a brief description. This used to be the default behaviour. 148*00b67f09SDavid van Moolenbroek# The new default is to treat a multi-line C++ comment block as a detailed 149*00b67f09SDavid van Moolenbroek# description. Set this tag to YES if you prefer the old behaviour instead. 150*00b67f09SDavid van Moolenbroek 151*00b67f09SDavid van MoolenbroekMULTILINE_CPP_IS_BRIEF = NO 152*00b67f09SDavid van Moolenbroek 153*00b67f09SDavid van Moolenbroek# If the DETAILS_AT_TOP tag is set to YES then Doxygen 154*00b67f09SDavid van Moolenbroek# will output the detailed description near the top, like JavaDoc. 155*00b67f09SDavid van Moolenbroek# If set to NO, the detailed description appears after the member 156*00b67f09SDavid van Moolenbroek# documentation. 157*00b67f09SDavid van Moolenbroek 158*00b67f09SDavid van MoolenbroekDETAILS_AT_TOP = NO 159*00b67f09SDavid van Moolenbroek 160*00b67f09SDavid van Moolenbroek# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 161*00b67f09SDavid van Moolenbroek# member inherits the documentation from any documented member that it 162*00b67f09SDavid van Moolenbroek# re-implements. 163*00b67f09SDavid van Moolenbroek 164*00b67f09SDavid van MoolenbroekINHERIT_DOCS = YES 165*00b67f09SDavid van Moolenbroek 166*00b67f09SDavid van Moolenbroek# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 167*00b67f09SDavid van Moolenbroek# a new page for each member. If set to NO, the documentation of a member will 168*00b67f09SDavid van Moolenbroek# be part of the file/class/namespace that contains it. 169*00b67f09SDavid van Moolenbroek 170*00b67f09SDavid van MoolenbroekSEPARATE_MEMBER_PAGES = NO 171*00b67f09SDavid van Moolenbroek 172*00b67f09SDavid van Moolenbroek# The TAB_SIZE tag can be used to set the number of spaces in a tab. 173*00b67f09SDavid van Moolenbroek# Doxygen uses this value to replace tabs by spaces in code fragments. 174*00b67f09SDavid van Moolenbroek 175*00b67f09SDavid van MoolenbroekTAB_SIZE = 8 176*00b67f09SDavid van Moolenbroek 177*00b67f09SDavid van Moolenbroek# This tag can be used to specify a number of aliases that acts 178*00b67f09SDavid van Moolenbroek# as commands in the documentation. An alias has the form "name=value". 179*00b67f09SDavid van Moolenbroek# For example adding "sideeffect=\par Side Effects:\n" will allow you to 180*00b67f09SDavid van Moolenbroek# put the command \sideeffect (or @sideeffect) in the documentation, which 181*00b67f09SDavid van Moolenbroek# will result in a user-defined paragraph with heading "Side Effects:". 182*00b67f09SDavid van Moolenbroek# You can put \n's in the value part of an alias to insert newlines. 183*00b67f09SDavid van Moolenbroek 184*00b67f09SDavid van MoolenbroekALIASES = 185*00b67f09SDavid van Moolenbroek 186*00b67f09SDavid van Moolenbroek# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 187*00b67f09SDavid van Moolenbroek# sources only. Doxygen will then generate output that is more tailored for C. 188*00b67f09SDavid van Moolenbroek# For instance, some of the names that are used will be different. The list 189*00b67f09SDavid van Moolenbroek# of all members will be omitted, etc. 190*00b67f09SDavid van Moolenbroek 191*00b67f09SDavid van MoolenbroekOPTIMIZE_OUTPUT_FOR_C = YES 192*00b67f09SDavid van Moolenbroek 193*00b67f09SDavid van Moolenbroek# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 194*00b67f09SDavid van Moolenbroek# sources only. Doxygen will then generate output that is more tailored for Java. 195*00b67f09SDavid van Moolenbroek# For instance, namespaces will be presented as packages, qualified scopes 196*00b67f09SDavid van Moolenbroek# will look different, etc. 197*00b67f09SDavid van Moolenbroek 198*00b67f09SDavid van MoolenbroekOPTIMIZE_OUTPUT_JAVA = NO 199*00b67f09SDavid van Moolenbroek 200*00b67f09SDavid van Moolenbroek# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to 201*00b67f09SDavid van Moolenbroek# include (a tag file for) the STL sources as input, then you should 202*00b67f09SDavid van Moolenbroek# set this tag to YES in order to let doxygen match functions declarations and 203*00b67f09SDavid van Moolenbroek# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 204*00b67f09SDavid van Moolenbroek# func(std::string) {}). This also make the inheritance and collaboration 205*00b67f09SDavid van Moolenbroek# diagrams that involve STL classes more complete and accurate. 206*00b67f09SDavid van Moolenbroek 207*00b67f09SDavid van MoolenbroekBUILTIN_STL_SUPPORT = NO 208*00b67f09SDavid van Moolenbroek 209*00b67f09SDavid van Moolenbroek# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 210*00b67f09SDavid van Moolenbroek# tag is set to YES, then doxygen will reuse the documentation of the first 211*00b67f09SDavid van Moolenbroek# member in the group (if any) for the other members of the group. By default 212*00b67f09SDavid van Moolenbroek# all members of a group must be documented explicitly. 213*00b67f09SDavid van Moolenbroek 214*00b67f09SDavid van MoolenbroekDISTRIBUTE_GROUP_DOC = YES 215*00b67f09SDavid van Moolenbroek 216*00b67f09SDavid van Moolenbroek# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 217*00b67f09SDavid van Moolenbroek# the same type (for instance a group of public functions) to be put as a 218*00b67f09SDavid van Moolenbroek# subgroup of that type (e.g. under the Public Functions section). Set it to 219*00b67f09SDavid van Moolenbroek# NO to prevent subgrouping. Alternatively, this can be done per class using 220*00b67f09SDavid van Moolenbroek# the \nosubgrouping command. 221*00b67f09SDavid van Moolenbroek 222*00b67f09SDavid van MoolenbroekSUBGROUPING = YES 223*00b67f09SDavid van Moolenbroek 224*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 225*00b67f09SDavid van Moolenbroek# Build related configuration options 226*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 227*00b67f09SDavid van Moolenbroek 228*00b67f09SDavid van Moolenbroek# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 229*00b67f09SDavid van Moolenbroek# documentation are documented, even if no documentation was available. 230*00b67f09SDavid van Moolenbroek# Private class members and static file members will be hidden unless 231*00b67f09SDavid van Moolenbroek# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 232*00b67f09SDavid van Moolenbroek 233*00b67f09SDavid van MoolenbroekEXTRACT_ALL = YES 234*00b67f09SDavid van Moolenbroek 235*00b67f09SDavid van Moolenbroek# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 236*00b67f09SDavid van Moolenbroek# will be included in the documentation. 237*00b67f09SDavid van Moolenbroek 238*00b67f09SDavid van MoolenbroekEXTRACT_PRIVATE = YES 239*00b67f09SDavid van Moolenbroek 240*00b67f09SDavid van Moolenbroek# If the EXTRACT_STATIC tag is set to YES all static members of a file 241*00b67f09SDavid van Moolenbroek# will be included in the documentation. 242*00b67f09SDavid van Moolenbroek 243*00b67f09SDavid van MoolenbroekEXTRACT_STATIC = YES 244*00b67f09SDavid van Moolenbroek 245*00b67f09SDavid van Moolenbroek# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 246*00b67f09SDavid van Moolenbroek# defined locally in source files will be included in the documentation. 247*00b67f09SDavid van Moolenbroek# If set to NO only classes defined in header files are included. 248*00b67f09SDavid van Moolenbroek 249*00b67f09SDavid van MoolenbroekEXTRACT_LOCAL_CLASSES = YES 250*00b67f09SDavid van Moolenbroek 251*00b67f09SDavid van Moolenbroek# This flag is only useful for Objective-C code. When set to YES local 252*00b67f09SDavid van Moolenbroek# methods, which are defined in the implementation section but not in 253*00b67f09SDavid van Moolenbroek# the interface are included in the documentation. 254*00b67f09SDavid van Moolenbroek# If set to NO (the default) only methods in the interface are included. 255*00b67f09SDavid van Moolenbroek 256*00b67f09SDavid van MoolenbroekEXTRACT_LOCAL_METHODS = YES 257*00b67f09SDavid van Moolenbroek 258*00b67f09SDavid van Moolenbroek# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 259*00b67f09SDavid van Moolenbroek# undocumented members of documented classes, files or namespaces. 260*00b67f09SDavid van Moolenbroek# If set to NO (the default) these members will be included in the 261*00b67f09SDavid van Moolenbroek# various overviews, but no documentation section is generated. 262*00b67f09SDavid van Moolenbroek# This option has no effect if EXTRACT_ALL is enabled. 263*00b67f09SDavid van Moolenbroek 264*00b67f09SDavid van MoolenbroekHIDE_UNDOC_MEMBERS = NO 265*00b67f09SDavid van Moolenbroek 266*00b67f09SDavid van Moolenbroek# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 267*00b67f09SDavid van Moolenbroek# undocumented classes that are normally visible in the class hierarchy. 268*00b67f09SDavid van Moolenbroek# If set to NO (the default) these classes will be included in the various 269*00b67f09SDavid van Moolenbroek# overviews. This option has no effect if EXTRACT_ALL is enabled. 270*00b67f09SDavid van Moolenbroek 271*00b67f09SDavid van MoolenbroekHIDE_UNDOC_CLASSES = NO 272*00b67f09SDavid van Moolenbroek 273*00b67f09SDavid van Moolenbroek# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 274*00b67f09SDavid van Moolenbroek# friend (class|struct|union) declarations. 275*00b67f09SDavid van Moolenbroek# If set to NO (the default) these declarations will be included in the 276*00b67f09SDavid van Moolenbroek# documentation. 277*00b67f09SDavid van Moolenbroek 278*00b67f09SDavid van MoolenbroekHIDE_FRIEND_COMPOUNDS = NO 279*00b67f09SDavid van Moolenbroek 280*00b67f09SDavid van Moolenbroek# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 281*00b67f09SDavid van Moolenbroek# documentation blocks found inside the body of a function. 282*00b67f09SDavid van Moolenbroek# If set to NO (the default) these blocks will be appended to the 283*00b67f09SDavid van Moolenbroek# function's detailed documentation block. 284*00b67f09SDavid van Moolenbroek 285*00b67f09SDavid van MoolenbroekHIDE_IN_BODY_DOCS = NO 286*00b67f09SDavid van Moolenbroek 287*00b67f09SDavid van Moolenbroek# The INTERNAL_DOCS tag determines if documentation 288*00b67f09SDavid van Moolenbroek# that is typed after a \internal command is included. If the tag is set 289*00b67f09SDavid van Moolenbroek# to NO (the default) then the documentation will be excluded. 290*00b67f09SDavid van Moolenbroek# Set it to YES to include the internal documentation. 291*00b67f09SDavid van Moolenbroek 292*00b67f09SDavid van MoolenbroekINTERNAL_DOCS = NO 293*00b67f09SDavid van Moolenbroek 294*00b67f09SDavid van Moolenbroek# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 295*00b67f09SDavid van Moolenbroek# file names in lower-case letters. If set to YES upper-case letters are also 296*00b67f09SDavid van Moolenbroek# allowed. This is useful if you have classes or files whose names only differ 297*00b67f09SDavid van Moolenbroek# in case and if your file system supports case sensitive file names. Windows 298*00b67f09SDavid van Moolenbroek# and Mac users are advised to set this option to NO. 299*00b67f09SDavid van Moolenbroek 300*00b67f09SDavid van MoolenbroekCASE_SENSE_NAMES = YES 301*00b67f09SDavid van Moolenbroek 302*00b67f09SDavid van Moolenbroek# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 303*00b67f09SDavid van Moolenbroek# will show members with their full class and namespace scopes in the 304*00b67f09SDavid van Moolenbroek# documentation. If set to YES the scope will be hidden. 305*00b67f09SDavid van Moolenbroek 306*00b67f09SDavid van MoolenbroekHIDE_SCOPE_NAMES = NO 307*00b67f09SDavid van Moolenbroek 308*00b67f09SDavid van Moolenbroek# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 309*00b67f09SDavid van Moolenbroek# will put a list of the files that are included by a file in the documentation 310*00b67f09SDavid van Moolenbroek# of that file. 311*00b67f09SDavid van Moolenbroek 312*00b67f09SDavid van MoolenbroekSHOW_INCLUDE_FILES = YES 313*00b67f09SDavid van Moolenbroek 314*00b67f09SDavid van Moolenbroek# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 315*00b67f09SDavid van Moolenbroek# is inserted in the documentation for inline members. 316*00b67f09SDavid van Moolenbroek 317*00b67f09SDavid van MoolenbroekINLINE_INFO = YES 318*00b67f09SDavid van Moolenbroek 319*00b67f09SDavid van Moolenbroek# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 320*00b67f09SDavid van Moolenbroek# will sort the (detailed) documentation of file and class members 321*00b67f09SDavid van Moolenbroek# alphabetically by member name. If set to NO the members will appear in 322*00b67f09SDavid van Moolenbroek# declaration order. 323*00b67f09SDavid van Moolenbroek 324*00b67f09SDavid van MoolenbroekSORT_MEMBER_DOCS = NO 325*00b67f09SDavid van Moolenbroek 326*00b67f09SDavid van Moolenbroek# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 327*00b67f09SDavid van Moolenbroek# brief documentation of file, namespace and class members alphabetically 328*00b67f09SDavid van Moolenbroek# by member name. If set to NO (the default) the members will appear in 329*00b67f09SDavid van Moolenbroek# declaration order. 330*00b67f09SDavid van Moolenbroek 331*00b67f09SDavid van MoolenbroekSORT_BRIEF_DOCS = NO 332*00b67f09SDavid van Moolenbroek 333*00b67f09SDavid van Moolenbroek# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 334*00b67f09SDavid van Moolenbroek# sorted by fully-qualified names, including namespaces. If set to 335*00b67f09SDavid van Moolenbroek# NO (the default), the class list will be sorted only by class name, 336*00b67f09SDavid van Moolenbroek# not including the namespace part. 337*00b67f09SDavid van Moolenbroek# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. 338*00b67f09SDavid van Moolenbroek# Note: This option applies only to the class list, not to the 339*00b67f09SDavid van Moolenbroek# alphabetical list. 340*00b67f09SDavid van Moolenbroek 341*00b67f09SDavid van MoolenbroekSORT_BY_SCOPE_NAME = NO 342*00b67f09SDavid van Moolenbroek 343*00b67f09SDavid van Moolenbroek# The GENERATE_TODOLIST tag can be used to enable (YES) or 344*00b67f09SDavid van Moolenbroek# disable (NO) the todo list. This list is created by putting \todo 345*00b67f09SDavid van Moolenbroek# commands in the documentation. 346*00b67f09SDavid van Moolenbroek 347*00b67f09SDavid van MoolenbroekGENERATE_TODOLIST = YES 348*00b67f09SDavid van Moolenbroek 349*00b67f09SDavid van Moolenbroek# The GENERATE_TESTLIST tag can be used to enable (YES) or 350*00b67f09SDavid van Moolenbroek# disable (NO) the test list. This list is created by putting \test 351*00b67f09SDavid van Moolenbroek# commands in the documentation. 352*00b67f09SDavid van Moolenbroek 353*00b67f09SDavid van MoolenbroekGENERATE_TESTLIST = YES 354*00b67f09SDavid van Moolenbroek 355*00b67f09SDavid van Moolenbroek# The GENERATE_BUGLIST tag can be used to enable (YES) or 356*00b67f09SDavid van Moolenbroek# disable (NO) the bug list. This list is created by putting \bug 357*00b67f09SDavid van Moolenbroek# commands in the documentation. 358*00b67f09SDavid van Moolenbroek 359*00b67f09SDavid van MoolenbroekGENERATE_BUGLIST = YES 360*00b67f09SDavid van Moolenbroek 361*00b67f09SDavid van Moolenbroek# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 362*00b67f09SDavid van Moolenbroek# disable (NO) the deprecated list. This list is created by putting 363*00b67f09SDavid van Moolenbroek# \deprecated commands in the documentation. 364*00b67f09SDavid van Moolenbroek 365*00b67f09SDavid van MoolenbroekGENERATE_DEPRECATEDLIST= YES 366*00b67f09SDavid van Moolenbroek 367*00b67f09SDavid van Moolenbroek# The ENABLED_SECTIONS tag can be used to enable conditional 368*00b67f09SDavid van Moolenbroek# documentation sections, marked by \if sectionname ... \endif. 369*00b67f09SDavid van Moolenbroek 370*00b67f09SDavid van MoolenbroekENABLED_SECTIONS = 371*00b67f09SDavid van Moolenbroek 372*00b67f09SDavid van Moolenbroek# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 373*00b67f09SDavid van Moolenbroek# the initial value of a variable or define consists of for it to appear in 374*00b67f09SDavid van Moolenbroek# the documentation. If the initializer consists of more lines than specified 375*00b67f09SDavid van Moolenbroek# here it will be hidden. Use a value of 0 to hide initializers completely. 376*00b67f09SDavid van Moolenbroek# The appearance of the initializer of individual variables and defines in the 377*00b67f09SDavid van Moolenbroek# documentation can be controlled using \showinitializer or \hideinitializer 378*00b67f09SDavid van Moolenbroek# command in the documentation regardless of this setting. 379*00b67f09SDavid van Moolenbroek 380*00b67f09SDavid van MoolenbroekMAX_INITIALIZER_LINES = 30 381*00b67f09SDavid van Moolenbroek 382*00b67f09SDavid van Moolenbroek# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 383*00b67f09SDavid van Moolenbroek# at the bottom of the documentation of classes and structs. If set to YES the 384*00b67f09SDavid van Moolenbroek# list will mention the files that were used to generate the documentation. 385*00b67f09SDavid van Moolenbroek 386*00b67f09SDavid van MoolenbroekSHOW_USED_FILES = YES 387*00b67f09SDavid van Moolenbroek 388*00b67f09SDavid van Moolenbroek# If the sources in your project are distributed over multiple directories 389*00b67f09SDavid van Moolenbroek# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 390*00b67f09SDavid van Moolenbroek# in the documentation. The default is NO. 391*00b67f09SDavid van Moolenbroek 392*00b67f09SDavid van MoolenbroekSHOW_DIRECTORIES = YES 393*00b67f09SDavid van Moolenbroek 394*00b67f09SDavid van Moolenbroek# The FILE_VERSION_FILTER tag can be used to specify a program or script that 395*00b67f09SDavid van Moolenbroek# doxygen should invoke to get the current version for each file (typically from the 396*00b67f09SDavid van Moolenbroek# version control system). Doxygen will invoke the program by executing (via 397*00b67f09SDavid van Moolenbroek# popen()) the command <command> <input-file>, where <command> is the value of 398*00b67f09SDavid van Moolenbroek# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 399*00b67f09SDavid van Moolenbroek# provided by doxygen. Whatever the program writes to standard output 400*00b67f09SDavid van Moolenbroek# is used as the file version. See the manual for examples. 401*00b67f09SDavid van Moolenbroek 402*00b67f09SDavid van MoolenbroekFILE_VERSION_FILTER = 403*00b67f09SDavid van Moolenbroek 404*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 405*00b67f09SDavid van Moolenbroek# configuration options related to warning and progress messages 406*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 407*00b67f09SDavid van Moolenbroek 408*00b67f09SDavid van Moolenbroek# The QUIET tag can be used to turn on/off the messages that are generated 409*00b67f09SDavid van Moolenbroek# by doxygen. Possible values are YES and NO. If left blank NO is used. 410*00b67f09SDavid van Moolenbroek 411*00b67f09SDavid van MoolenbroekQUIET = NO 412*00b67f09SDavid van Moolenbroek 413*00b67f09SDavid van Moolenbroek# The WARNINGS tag can be used to turn on/off the warning messages that are 414*00b67f09SDavid van Moolenbroek# generated by doxygen. Possible values are YES and NO. If left blank 415*00b67f09SDavid van Moolenbroek# NO is used. 416*00b67f09SDavid van Moolenbroek 417*00b67f09SDavid van MoolenbroekWARNINGS = YES 418*00b67f09SDavid van Moolenbroek 419*00b67f09SDavid van Moolenbroek# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 420*00b67f09SDavid van Moolenbroek# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 421*00b67f09SDavid van Moolenbroek# automatically be disabled. 422*00b67f09SDavid van Moolenbroek 423*00b67f09SDavid van MoolenbroekWARN_IF_UNDOCUMENTED = YES 424*00b67f09SDavid van Moolenbroek 425*00b67f09SDavid van Moolenbroek# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 426*00b67f09SDavid van Moolenbroek# potential errors in the documentation, such as not documenting some 427*00b67f09SDavid van Moolenbroek# parameters in a documented function, or documenting parameters that 428*00b67f09SDavid van Moolenbroek# don't exist or using markup commands wrongly. 429*00b67f09SDavid van Moolenbroek 430*00b67f09SDavid van MoolenbroekWARN_IF_DOC_ERROR = YES 431*00b67f09SDavid van Moolenbroek 432*00b67f09SDavid van Moolenbroek# This WARN_NO_PARAMDOC option can be abled to get warnings for 433*00b67f09SDavid van Moolenbroek# functions that are documented, but have no documentation for their parameters 434*00b67f09SDavid van Moolenbroek# or return value. If set to NO (the default) doxygen will only warn about 435*00b67f09SDavid van Moolenbroek# wrong or incomplete parameter documentation, but not about the absence of 436*00b67f09SDavid van Moolenbroek# documentation. 437*00b67f09SDavid van Moolenbroek 438*00b67f09SDavid van MoolenbroekWARN_NO_PARAMDOC = YES 439*00b67f09SDavid van Moolenbroek 440*00b67f09SDavid van Moolenbroek# The WARN_FORMAT tag determines the format of the warning messages that 441*00b67f09SDavid van Moolenbroek# doxygen can produce. The string should contain the $file, $line, and $text 442*00b67f09SDavid van Moolenbroek# tags, which will be replaced by the file and line number from which the 443*00b67f09SDavid van Moolenbroek# warning originated and the warning text. Optionally the format may contain 444*00b67f09SDavid van Moolenbroek# $version, which will be replaced by the version of the file (if it could 445*00b67f09SDavid van Moolenbroek# be obtained via FILE_VERSION_FILTER) 446*00b67f09SDavid van Moolenbroek 447*00b67f09SDavid van MoolenbroekWARN_FORMAT = "$file:$line: $text" 448*00b67f09SDavid van Moolenbroek 449*00b67f09SDavid van Moolenbroek# The WARN_LOGFILE tag can be used to specify a file to which warning 450*00b67f09SDavid van Moolenbroek# and error messages should be written. If left blank the output is written 451*00b67f09SDavid van Moolenbroek# to stderr. 452*00b67f09SDavid van Moolenbroek 453*00b67f09SDavid van MoolenbroekWARN_LOGFILE = 454*00b67f09SDavid van Moolenbroek 455*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 456*00b67f09SDavid van Moolenbroek# configuration options related to the input files 457*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 458*00b67f09SDavid van Moolenbroek 459*00b67f09SDavid van Moolenbroek# The INPUT tag can be used to specify the files and/or directories that contain 460*00b67f09SDavid van Moolenbroek# documented source files. You may enter file names like "myfile.cpp" or 461*00b67f09SDavid van Moolenbroek# directories like "/usr/src/myproject". Separate the files or directories 462*00b67f09SDavid van Moolenbroek# with spaces. 463*00b67f09SDavid van Moolenbroek 464*00b67f09SDavid van MoolenbroekINPUT = @BIND9_TOP_BUILDDIR@/lib/isc \ 465*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/lib/dns \ 466*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/lib/isccfg \ 467*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/lib/isccc \ 468*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/lib/bind9 \ 469*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/bin/check \ 470*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/bin/dig \ 471*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/bin/dnssec \ 472*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/bin/named \ 473*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/bin/nsupdate \ 474*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/bin/rndc \ 475*00b67f09SDavid van Moolenbroek @BIND9_TOP_BUILDDIR@/doc/doxygen/mainpage 476*00b67f09SDavid van Moolenbroek 477*00b67f09SDavid van Moolenbroek# If the value of the INPUT tag contains directories, you can use the 478*00b67f09SDavid van Moolenbroek# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 479*00b67f09SDavid van Moolenbroek# and *.h) to filter out the source-files in the directories. If left 480*00b67f09SDavid van Moolenbroek# blank the following patterns are tested: 481*00b67f09SDavid van Moolenbroek# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 482*00b67f09SDavid van Moolenbroek# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py 483*00b67f09SDavid van Moolenbroek 484*00b67f09SDavid van MoolenbroekFILE_PATTERNS = *.c *.h *.dox 485*00b67f09SDavid van Moolenbroek 486*00b67f09SDavid van Moolenbroek# The RECURSIVE tag can be used to turn specify whether or not subdirectories 487*00b67f09SDavid van Moolenbroek# should be searched for input files as well. Possible values are YES and NO. 488*00b67f09SDavid van Moolenbroek# If left blank NO is used. 489*00b67f09SDavid van Moolenbroek 490*00b67f09SDavid van MoolenbroekRECURSIVE = YES 491*00b67f09SDavid van Moolenbroek 492*00b67f09SDavid van Moolenbroek# The EXCLUDE tag can be used to specify files and/or directories that should 493*00b67f09SDavid van Moolenbroek# excluded from the INPUT source files. This way you can easily exclude a 494*00b67f09SDavid van Moolenbroek# subdirectory from a directory tree whose root is specified with the INPUT tag. 495*00b67f09SDavid van Moolenbroek 496*00b67f09SDavid van MoolenbroekEXCLUDE = 497*00b67f09SDavid van Moolenbroek 498*00b67f09SDavid van Moolenbroek# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 499*00b67f09SDavid van Moolenbroek# directories that are symbolic links (a Unix filesystem feature) are excluded 500*00b67f09SDavid van Moolenbroek# from the input. 501*00b67f09SDavid van Moolenbroek 502*00b67f09SDavid van MoolenbroekEXCLUDE_SYMLINKS = NO 503*00b67f09SDavid van Moolenbroek 504*00b67f09SDavid van Moolenbroek# If the value of the INPUT tag contains directories, you can use the 505*00b67f09SDavid van Moolenbroek# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 506*00b67f09SDavid van Moolenbroek# certain files from those directories. Note that the wildcards are matched 507*00b67f09SDavid van Moolenbroek# against the file with absolute path, so to exclude all test directories 508*00b67f09SDavid van Moolenbroek# for example use the pattern */test/* 509*00b67f09SDavid van Moolenbroek 510*00b67f09SDavid van MoolenbroekEXCLUDE_PATTERNS = */win32/* */lib/dns/gen* */lib/dns/rdata/*.h 511*00b67f09SDavid van Moolenbroek 512*00b67f09SDavid van Moolenbroek# The EXAMPLE_PATH tag can be used to specify one or more files or 513*00b67f09SDavid van Moolenbroek# directories that contain example code fragments that are included (see 514*00b67f09SDavid van Moolenbroek# the \include command). 515*00b67f09SDavid van Moolenbroek 516*00b67f09SDavid van MoolenbroekEXAMPLE_PATH = 517*00b67f09SDavid van Moolenbroek 518*00b67f09SDavid van Moolenbroek# If the value of the EXAMPLE_PATH tag contains directories, you can use the 519*00b67f09SDavid van Moolenbroek# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 520*00b67f09SDavid van Moolenbroek# and *.h) to filter out the source-files in the directories. If left 521*00b67f09SDavid van Moolenbroek# blank all files are included. 522*00b67f09SDavid van Moolenbroek 523*00b67f09SDavid van MoolenbroekEXAMPLE_PATTERNS = * 524*00b67f09SDavid van Moolenbroek 525*00b67f09SDavid van Moolenbroek# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 526*00b67f09SDavid van Moolenbroek# searched for input files to be used with the \include or \dontinclude 527*00b67f09SDavid van Moolenbroek# commands irrespective of the value of the RECURSIVE tag. 528*00b67f09SDavid van Moolenbroek# Possible values are YES and NO. If left blank NO is used. 529*00b67f09SDavid van Moolenbroek 530*00b67f09SDavid van MoolenbroekEXAMPLE_RECURSIVE = NO 531*00b67f09SDavid van Moolenbroek 532*00b67f09SDavid van Moolenbroek# The IMAGE_PATH tag can be used to specify one or more files or 533*00b67f09SDavid van Moolenbroek# directories that contain image that are included in the documentation (see 534*00b67f09SDavid van Moolenbroek# the \image command). 535*00b67f09SDavid van Moolenbroek 536*00b67f09SDavid van MoolenbroekIMAGE_PATH = 537*00b67f09SDavid van Moolenbroek 538*00b67f09SDavid van Moolenbroek# The INPUT_FILTER tag can be used to specify a program that doxygen should 539*00b67f09SDavid van Moolenbroek# invoke to filter for each input file. Doxygen will invoke the filter program 540*00b67f09SDavid van Moolenbroek# by executing (via popen()) the command <filter> <input-file>, where <filter> 541*00b67f09SDavid van Moolenbroek# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 542*00b67f09SDavid van Moolenbroek# input file. Doxygen will then use the output that the filter program writes 543*00b67f09SDavid van Moolenbroek# to standard output. If FILTER_PATTERNS is specified, this tag will be 544*00b67f09SDavid van Moolenbroek# ignored. 545*00b67f09SDavid van Moolenbroek 546*00b67f09SDavid van MoolenbroekINPUT_FILTER = ./doxygen-input-filter 547*00b67f09SDavid van Moolenbroek 548*00b67f09SDavid van Moolenbroek# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 549*00b67f09SDavid van Moolenbroek# basis. Doxygen will compare the file name with each pattern and apply the 550*00b67f09SDavid van Moolenbroek# filter if there is a match. The filters are a list of the form: 551*00b67f09SDavid van Moolenbroek# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 552*00b67f09SDavid van Moolenbroek# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 553*00b67f09SDavid van Moolenbroek# is applied to all files. 554*00b67f09SDavid van Moolenbroek 555*00b67f09SDavid van MoolenbroekFILTER_PATTERNS = 556*00b67f09SDavid van Moolenbroek 557*00b67f09SDavid van Moolenbroek# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 558*00b67f09SDavid van Moolenbroek# INPUT_FILTER) will be used to filter the input files when producing source 559*00b67f09SDavid van Moolenbroek# files to browse (i.e. when SOURCE_BROWSER is set to YES). 560*00b67f09SDavid van Moolenbroek 561*00b67f09SDavid van MoolenbroekFILTER_SOURCE_FILES = NO 562*00b67f09SDavid van Moolenbroek 563*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 564*00b67f09SDavid van Moolenbroek# configuration options related to source browsing 565*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 566*00b67f09SDavid van Moolenbroek 567*00b67f09SDavid van Moolenbroek# If the SOURCE_BROWSER tag is set to YES then a list of source files will 568*00b67f09SDavid van Moolenbroek# be generated. Documented entities will be cross-referenced with these sources. 569*00b67f09SDavid van Moolenbroek# Note: To get rid of all source code in the generated output, make sure also 570*00b67f09SDavid van Moolenbroek# VERBATIM_HEADERS is set to NO. 571*00b67f09SDavid van Moolenbroek 572*00b67f09SDavid van MoolenbroekSOURCE_BROWSER = YES 573*00b67f09SDavid van Moolenbroek 574*00b67f09SDavid van Moolenbroek# Setting the INLINE_SOURCES tag to YES will include the body 575*00b67f09SDavid van Moolenbroek# of functions and classes directly in the documentation. 576*00b67f09SDavid van Moolenbroek 577*00b67f09SDavid van MoolenbroekINLINE_SOURCES = NO 578*00b67f09SDavid van Moolenbroek 579*00b67f09SDavid van Moolenbroek# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 580*00b67f09SDavid van Moolenbroek# doxygen to hide any special comment blocks from generated source code 581*00b67f09SDavid van Moolenbroek# fragments. Normal C and C++ comments will always remain visible. 582*00b67f09SDavid van Moolenbroek 583*00b67f09SDavid van MoolenbroekSTRIP_CODE_COMMENTS = NO 584*00b67f09SDavid van Moolenbroek 585*00b67f09SDavid van Moolenbroek# If the REFERENCED_BY_RELATION tag is set to YES (the default) 586*00b67f09SDavid van Moolenbroek# then for each documented function all documented 587*00b67f09SDavid van Moolenbroek# functions referencing it will be listed. 588*00b67f09SDavid van Moolenbroek 589*00b67f09SDavid van MoolenbroekREFERENCED_BY_RELATION = YES 590*00b67f09SDavid van Moolenbroek 591*00b67f09SDavid van Moolenbroek# If the REFERENCES_RELATION tag is set to YES (the default) 592*00b67f09SDavid van Moolenbroek# then for each documented function all documented entities 593*00b67f09SDavid van Moolenbroek# called/used by that function will be listed. 594*00b67f09SDavid van Moolenbroek 595*00b67f09SDavid van MoolenbroekREFERENCES_RELATION = YES 596*00b67f09SDavid van Moolenbroek 597*00b67f09SDavid van Moolenbroek# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 598*00b67f09SDavid van Moolenbroek# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 599*00b67f09SDavid van Moolenbroek# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 600*00b67f09SDavid van Moolenbroek# link to the source code. Otherwise they will link to the documentstion. 601*00b67f09SDavid van Moolenbroek 602*00b67f09SDavid van MoolenbroekREFERENCES_LINK_SOURCE = YES 603*00b67f09SDavid van Moolenbroek 604*00b67f09SDavid van Moolenbroek# If the USE_HTAGS tag is set to YES then the references to source code 605*00b67f09SDavid van Moolenbroek# will point to the HTML generated by the htags(1) tool instead of doxygen 606*00b67f09SDavid van Moolenbroek# built-in source browser. The htags tool is part of GNU's global source 607*00b67f09SDavid van Moolenbroek# tagging system (see http://www.gnu.org/software/global/global.html). You 608*00b67f09SDavid van Moolenbroek# will need version 4.8.6 or higher. 609*00b67f09SDavid van Moolenbroek 610*00b67f09SDavid van MoolenbroekUSE_HTAGS = NO 611*00b67f09SDavid van Moolenbroek 612*00b67f09SDavid van Moolenbroek# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 613*00b67f09SDavid van Moolenbroek# will generate a verbatim copy of the header file for each class for 614*00b67f09SDavid van Moolenbroek# which an include is specified. Set to NO to disable this. 615*00b67f09SDavid van Moolenbroek 616*00b67f09SDavid van MoolenbroekVERBATIM_HEADERS = YES 617*00b67f09SDavid van Moolenbroek 618*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 619*00b67f09SDavid van Moolenbroek# configuration options related to the alphabetical class index 620*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 621*00b67f09SDavid van Moolenbroek 622*00b67f09SDavid van Moolenbroek# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 623*00b67f09SDavid van Moolenbroek# of all compounds will be generated. Enable this if the project 624*00b67f09SDavid van Moolenbroek# contains a lot of classes, structs, unions or interfaces. 625*00b67f09SDavid van Moolenbroek 626*00b67f09SDavid van MoolenbroekALPHABETICAL_INDEX = YES 627*00b67f09SDavid van Moolenbroek 628*00b67f09SDavid van Moolenbroek# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 629*00b67f09SDavid van Moolenbroek# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 630*00b67f09SDavid van Moolenbroek# in which this list will be split (can be a number in the range [1..20]) 631*00b67f09SDavid van Moolenbroek 632*00b67f09SDavid van MoolenbroekCOLS_IN_ALPHA_INDEX = 5 633*00b67f09SDavid van Moolenbroek 634*00b67f09SDavid van Moolenbroek# In case all classes in a project start with a common prefix, all 635*00b67f09SDavid van Moolenbroek# classes will be put under the same header in the alphabetical index. 636*00b67f09SDavid van Moolenbroek# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 637*00b67f09SDavid van Moolenbroek# should be ignored while generating the index headers. 638*00b67f09SDavid van Moolenbroek 639*00b67f09SDavid van MoolenbroekIGNORE_PREFIX = 640*00b67f09SDavid van Moolenbroek 641*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 642*00b67f09SDavid van Moolenbroek# configuration options related to the HTML output 643*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 644*00b67f09SDavid van Moolenbroek 645*00b67f09SDavid van Moolenbroek# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 646*00b67f09SDavid van Moolenbroek# generate HTML output. 647*00b67f09SDavid van Moolenbroek 648*00b67f09SDavid van MoolenbroekGENERATE_HTML = YES 649*00b67f09SDavid van Moolenbroek 650*00b67f09SDavid van Moolenbroek# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 651*00b67f09SDavid van Moolenbroek# If a relative path is entered the value of OUTPUT_DIRECTORY will be 652*00b67f09SDavid van Moolenbroek# put in front of it. If left blank `html' will be used as the default path. 653*00b67f09SDavid van Moolenbroek 654*00b67f09SDavid van MoolenbroekHTML_OUTPUT = html 655*00b67f09SDavid van Moolenbroek 656*00b67f09SDavid van Moolenbroek# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 657*00b67f09SDavid van Moolenbroek# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 658*00b67f09SDavid van Moolenbroek# doxygen will generate files with .html extension. 659*00b67f09SDavid van Moolenbroek 660*00b67f09SDavid van MoolenbroekHTML_FILE_EXTENSION = .html 661*00b67f09SDavid van Moolenbroek 662*00b67f09SDavid van Moolenbroek# The HTML_HEADER tag can be used to specify a personal HTML header for 663*00b67f09SDavid van Moolenbroek# each generated HTML page. If it is left blank doxygen will generate a 664*00b67f09SDavid van Moolenbroek# standard header. 665*00b67f09SDavid van Moolenbroek 666*00b67f09SDavid van MoolenbroekHTML_HEADER = isc-header.html 667*00b67f09SDavid van Moolenbroek 668*00b67f09SDavid van Moolenbroek# The HTML_FOOTER tag can be used to specify a personal HTML footer for 669*00b67f09SDavid van Moolenbroek# each generated HTML page. If it is left blank doxygen will generate a 670*00b67f09SDavid van Moolenbroek# standard footer. 671*00b67f09SDavid van Moolenbroek 672*00b67f09SDavid van MoolenbroekHTML_FOOTER = isc-footer.html 673*00b67f09SDavid van Moolenbroek 674*00b67f09SDavid van Moolenbroek# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 675*00b67f09SDavid van Moolenbroek# style sheet that is used by each HTML page. It can be used to 676*00b67f09SDavid van Moolenbroek# fine-tune the look of the HTML output. If the tag is left blank doxygen 677*00b67f09SDavid van Moolenbroek# will generate a default style sheet. Note that doxygen will try to copy 678*00b67f09SDavid van Moolenbroek# the style sheet file to the HTML output directory, so don't put your own 679*00b67f09SDavid van Moolenbroek# stylesheet in the HTML output directory as well, or it will be erased! 680*00b67f09SDavid van Moolenbroek 681*00b67f09SDavid van MoolenbroekHTML_STYLESHEET = 682*00b67f09SDavid van Moolenbroek 683*00b67f09SDavid van Moolenbroek# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 684*00b67f09SDavid van Moolenbroek# files or namespaces will be aligned in HTML using tables. If set to 685*00b67f09SDavid van Moolenbroek# NO a bullet list will be used. 686*00b67f09SDavid van Moolenbroek 687*00b67f09SDavid van MoolenbroekHTML_ALIGN_MEMBERS = YES 688*00b67f09SDavid van Moolenbroek 689*00b67f09SDavid van Moolenbroek# If the GENERATE_HTMLHELP tag is set to YES, additional index files 690*00b67f09SDavid van Moolenbroek# will be generated that can be used as input for tools like the 691*00b67f09SDavid van Moolenbroek# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 692*00b67f09SDavid van Moolenbroek# of the generated HTML documentation. 693*00b67f09SDavid van Moolenbroek 694*00b67f09SDavid van MoolenbroekGENERATE_HTMLHELP = NO 695*00b67f09SDavid van Moolenbroek 696*00b67f09SDavid van Moolenbroek# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 697*00b67f09SDavid van Moolenbroek# be used to specify the file name of the resulting .chm file. You 698*00b67f09SDavid van Moolenbroek# can add a path in front of the file if the result should not be 699*00b67f09SDavid van Moolenbroek# written to the html output directory. 700*00b67f09SDavid van Moolenbroek 701*00b67f09SDavid van MoolenbroekCHM_FILE = 702*00b67f09SDavid van Moolenbroek 703*00b67f09SDavid van Moolenbroek# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 704*00b67f09SDavid van Moolenbroek# be used to specify the location (absolute path including file name) of 705*00b67f09SDavid van Moolenbroek# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 706*00b67f09SDavid van Moolenbroek# the HTML help compiler on the generated index.hhp. 707*00b67f09SDavid van Moolenbroek 708*00b67f09SDavid van MoolenbroekHHC_LOCATION = 709*00b67f09SDavid van Moolenbroek 710*00b67f09SDavid van Moolenbroek# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 711*00b67f09SDavid van Moolenbroek# controls if a separate .chi index file is generated (YES) or that 712*00b67f09SDavid van Moolenbroek# it should be included in the master .chm file (NO). 713*00b67f09SDavid van Moolenbroek 714*00b67f09SDavid van MoolenbroekGENERATE_CHI = NO 715*00b67f09SDavid van Moolenbroek 716*00b67f09SDavid van Moolenbroek# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 717*00b67f09SDavid van Moolenbroek# controls whether a binary table of contents is generated (YES) or a 718*00b67f09SDavid van Moolenbroek# normal table of contents (NO) in the .chm file. 719*00b67f09SDavid van Moolenbroek 720*00b67f09SDavid van MoolenbroekBINARY_TOC = NO 721*00b67f09SDavid van Moolenbroek 722*00b67f09SDavid van Moolenbroek# The TOC_EXPAND flag can be set to YES to add extra items for group members 723*00b67f09SDavid van Moolenbroek# to the contents of the HTML help documentation and to the tree view. 724*00b67f09SDavid van Moolenbroek 725*00b67f09SDavid van MoolenbroekTOC_EXPAND = NO 726*00b67f09SDavid van Moolenbroek 727*00b67f09SDavid van Moolenbroek# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 728*00b67f09SDavid van Moolenbroek# top of each HTML page. The value NO (the default) enables the index and 729*00b67f09SDavid van Moolenbroek# the value YES disables it. 730*00b67f09SDavid van Moolenbroek 731*00b67f09SDavid van MoolenbroekDISABLE_INDEX = NO 732*00b67f09SDavid van Moolenbroek 733*00b67f09SDavid van Moolenbroek# This tag can be used to set the number of enum values (range [1..20]) 734*00b67f09SDavid van Moolenbroek# that doxygen will group on one line in the generated HTML documentation. 735*00b67f09SDavid van Moolenbroek 736*00b67f09SDavid van MoolenbroekENUM_VALUES_PER_LINE = 4 737*00b67f09SDavid van Moolenbroek 738*00b67f09SDavid van Moolenbroek# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be 739*00b67f09SDavid van Moolenbroek# generated containing a tree-like index structure (just like the one that 740*00b67f09SDavid van Moolenbroek# is generated for HTML Help). For this to work a browser that supports 741*00b67f09SDavid van Moolenbroek# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 742*00b67f09SDavid van Moolenbroek# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 743*00b67f09SDavid van Moolenbroek# probably better off using the HTML help feature. 744*00b67f09SDavid van Moolenbroek 745*00b67f09SDavid van MoolenbroekGENERATE_TREEVIEW = NO 746*00b67f09SDavid van Moolenbroek 747*00b67f09SDavid van Moolenbroek# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 748*00b67f09SDavid van Moolenbroek# used to set the initial width (in pixels) of the frame in which the tree 749*00b67f09SDavid van Moolenbroek# is shown. 750*00b67f09SDavid van Moolenbroek 751*00b67f09SDavid van MoolenbroekTREEVIEW_WIDTH = 250 752*00b67f09SDavid van Moolenbroek 753*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 754*00b67f09SDavid van Moolenbroek# configuration options related to the LaTeX output 755*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 756*00b67f09SDavid van Moolenbroek 757*00b67f09SDavid van Moolenbroek# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 758*00b67f09SDavid van Moolenbroek# generate Latex output. 759*00b67f09SDavid van Moolenbroek 760*00b67f09SDavid van MoolenbroekGENERATE_LATEX = NO 761*00b67f09SDavid van Moolenbroek 762*00b67f09SDavid van Moolenbroek# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 763*00b67f09SDavid van Moolenbroek# If a relative path is entered the value of OUTPUT_DIRECTORY will be 764*00b67f09SDavid van Moolenbroek# put in front of it. If left blank `latex' will be used as the default path. 765*00b67f09SDavid van Moolenbroek 766*00b67f09SDavid van MoolenbroekLATEX_OUTPUT = latex 767*00b67f09SDavid van Moolenbroek 768*00b67f09SDavid van Moolenbroek# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 769*00b67f09SDavid van Moolenbroek# invoked. If left blank `latex' will be used as the default command name. 770*00b67f09SDavid van Moolenbroek 771*00b67f09SDavid van MoolenbroekLATEX_CMD_NAME = latex 772*00b67f09SDavid van Moolenbroek 773*00b67f09SDavid van Moolenbroek# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 774*00b67f09SDavid van Moolenbroek# generate index for LaTeX. If left blank `makeindex' will be used as the 775*00b67f09SDavid van Moolenbroek# default command name. 776*00b67f09SDavid van Moolenbroek 777*00b67f09SDavid van MoolenbroekMAKEINDEX_CMD_NAME = makeindex 778*00b67f09SDavid van Moolenbroek 779*00b67f09SDavid van Moolenbroek# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 780*00b67f09SDavid van Moolenbroek# LaTeX documents. This may be useful for small projects and may help to 781*00b67f09SDavid van Moolenbroek# save some trees in general. 782*00b67f09SDavid van Moolenbroek 783*00b67f09SDavid van MoolenbroekCOMPACT_LATEX = YES 784*00b67f09SDavid van Moolenbroek 785*00b67f09SDavid van Moolenbroek# The PAPER_TYPE tag can be used to set the paper type that is used 786*00b67f09SDavid van Moolenbroek# by the printer. Possible values are: a4, a4wide, letter, legal and 787*00b67f09SDavid van Moolenbroek# executive. If left blank a4wide will be used. 788*00b67f09SDavid van Moolenbroek 789*00b67f09SDavid van MoolenbroekPAPER_TYPE = letter 790*00b67f09SDavid van Moolenbroek 791*00b67f09SDavid van Moolenbroek# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 792*00b67f09SDavid van Moolenbroek# packages that should be included in the LaTeX output. 793*00b67f09SDavid van Moolenbroek 794*00b67f09SDavid van MoolenbroekEXTRA_PACKAGES = 795*00b67f09SDavid van Moolenbroek 796*00b67f09SDavid van Moolenbroek# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 797*00b67f09SDavid van Moolenbroek# the generated latex document. The header should contain everything until 798*00b67f09SDavid van Moolenbroek# the first chapter. If it is left blank doxygen will generate a 799*00b67f09SDavid van Moolenbroek# standard header. Notice: only use this tag if you know what you are doing! 800*00b67f09SDavid van Moolenbroek 801*00b67f09SDavid van MoolenbroekLATEX_HEADER = 802*00b67f09SDavid van Moolenbroek 803*00b67f09SDavid van Moolenbroek# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 804*00b67f09SDavid van Moolenbroek# is prepared for conversion to pdf (using ps2pdf). The pdf file will 805*00b67f09SDavid van Moolenbroek# contain links (just like the HTML output) instead of page references 806*00b67f09SDavid van Moolenbroek# This makes the output suitable for online browsing using a pdf viewer. 807*00b67f09SDavid van Moolenbroek 808*00b67f09SDavid van MoolenbroekPDF_HYPERLINKS = NO 809*00b67f09SDavid van Moolenbroek 810*00b67f09SDavid van Moolenbroek# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 811*00b67f09SDavid van Moolenbroek# plain latex in the generated Makefile. Set this option to YES to get a 812*00b67f09SDavid van Moolenbroek# higher quality PDF documentation. 813*00b67f09SDavid van Moolenbroek 814*00b67f09SDavid van MoolenbroekUSE_PDFLATEX = YES 815*00b67f09SDavid van Moolenbroek 816*00b67f09SDavid van Moolenbroek# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 817*00b67f09SDavid van Moolenbroek# command to the generated LaTeX files. This will instruct LaTeX to keep 818*00b67f09SDavid van Moolenbroek# running if errors occur, instead of asking the user for help. 819*00b67f09SDavid van Moolenbroek# This option is also used when generating formulas in HTML. 820*00b67f09SDavid van Moolenbroek 821*00b67f09SDavid van MoolenbroekLATEX_BATCHMODE = YES 822*00b67f09SDavid van Moolenbroek 823*00b67f09SDavid van Moolenbroek# If LATEX_HIDE_INDICES is set to YES then doxygen will not 824*00b67f09SDavid van Moolenbroek# include the index chapters (such as File Index, Compound Index, etc.) 825*00b67f09SDavid van Moolenbroek# in the output. 826*00b67f09SDavid van Moolenbroek 827*00b67f09SDavid van MoolenbroekLATEX_HIDE_INDICES = YES 828*00b67f09SDavid van Moolenbroek 829*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 830*00b67f09SDavid van Moolenbroek# configuration options related to the RTF output 831*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 832*00b67f09SDavid van Moolenbroek 833*00b67f09SDavid van Moolenbroek# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 834*00b67f09SDavid van Moolenbroek# The RTF output is optimized for Word 97 and may not look very pretty with 835*00b67f09SDavid van Moolenbroek# other RTF readers or editors. 836*00b67f09SDavid van Moolenbroek 837*00b67f09SDavid van MoolenbroekGENERATE_RTF = NO 838*00b67f09SDavid van Moolenbroek 839*00b67f09SDavid van Moolenbroek# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 840*00b67f09SDavid van Moolenbroek# If a relative path is entered the value of OUTPUT_DIRECTORY will be 841*00b67f09SDavid van Moolenbroek# put in front of it. If left blank `rtf' will be used as the default path. 842*00b67f09SDavid van Moolenbroek 843*00b67f09SDavid van MoolenbroekRTF_OUTPUT = rtf 844*00b67f09SDavid van Moolenbroek 845*00b67f09SDavid van Moolenbroek# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 846*00b67f09SDavid van Moolenbroek# RTF documents. This may be useful for small projects and may help to 847*00b67f09SDavid van Moolenbroek# save some trees in general. 848*00b67f09SDavid van Moolenbroek 849*00b67f09SDavid van MoolenbroekCOMPACT_RTF = NO 850*00b67f09SDavid van Moolenbroek 851*00b67f09SDavid van Moolenbroek# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 852*00b67f09SDavid van Moolenbroek# will contain hyperlink fields. The RTF file will 853*00b67f09SDavid van Moolenbroek# contain links (just like the HTML output) instead of page references. 854*00b67f09SDavid van Moolenbroek# This makes the output suitable for online browsing using WORD or other 855*00b67f09SDavid van Moolenbroek# programs which support those fields. 856*00b67f09SDavid van Moolenbroek# Note: wordpad (write) and others do not support links. 857*00b67f09SDavid van Moolenbroek 858*00b67f09SDavid van MoolenbroekRTF_HYPERLINKS = NO 859*00b67f09SDavid van Moolenbroek 860*00b67f09SDavid van Moolenbroek# Load stylesheet definitions from file. Syntax is similar to doxygen's 861*00b67f09SDavid van Moolenbroek# config file, i.e. a series of assignments. You only have to provide 862*00b67f09SDavid van Moolenbroek# replacements, missing definitions are set to their default value. 863*00b67f09SDavid van Moolenbroek 864*00b67f09SDavid van MoolenbroekRTF_STYLESHEET_FILE = 865*00b67f09SDavid van Moolenbroek 866*00b67f09SDavid van Moolenbroek# Set optional variables used in the generation of an rtf document. 867*00b67f09SDavid van Moolenbroek# Syntax is similar to doxygen's config file. 868*00b67f09SDavid van Moolenbroek 869*00b67f09SDavid van MoolenbroekRTF_EXTENSIONS_FILE = 870*00b67f09SDavid van Moolenbroek 871*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 872*00b67f09SDavid van Moolenbroek# configuration options related to the man page output 873*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 874*00b67f09SDavid van Moolenbroek 875*00b67f09SDavid van Moolenbroek# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 876*00b67f09SDavid van Moolenbroek# generate man pages 877*00b67f09SDavid van Moolenbroek 878*00b67f09SDavid van MoolenbroekGENERATE_MAN = NO 879*00b67f09SDavid van Moolenbroek 880*00b67f09SDavid van Moolenbroek# The MAN_OUTPUT tag is used to specify where the man pages will be put. 881*00b67f09SDavid van Moolenbroek# If a relative path is entered the value of OUTPUT_DIRECTORY will be 882*00b67f09SDavid van Moolenbroek# put in front of it. If left blank `man' will be used as the default path. 883*00b67f09SDavid van Moolenbroek 884*00b67f09SDavid van MoolenbroekMAN_OUTPUT = man 885*00b67f09SDavid van Moolenbroek 886*00b67f09SDavid van Moolenbroek# The MAN_EXTENSION tag determines the extension that is added to 887*00b67f09SDavid van Moolenbroek# the generated man pages (default is the subroutine's section .3) 888*00b67f09SDavid van Moolenbroek 889*00b67f09SDavid van MoolenbroekMAN_EXTENSION = .3 890*00b67f09SDavid van Moolenbroek 891*00b67f09SDavid van Moolenbroek# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 892*00b67f09SDavid van Moolenbroek# then it will generate one additional man file for each entity 893*00b67f09SDavid van Moolenbroek# documented in the real man page(s). These additional files 894*00b67f09SDavid van Moolenbroek# only source the real man page, but without them the man command 895*00b67f09SDavid van Moolenbroek# would be unable to find the correct page. The default is NO. 896*00b67f09SDavid van Moolenbroek 897*00b67f09SDavid van MoolenbroekMAN_LINKS = NO 898*00b67f09SDavid van Moolenbroek 899*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 900*00b67f09SDavid van Moolenbroek# configuration options related to the XML output 901*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 902*00b67f09SDavid van Moolenbroek 903*00b67f09SDavid van Moolenbroek# If the GENERATE_XML tag is set to YES Doxygen will 904*00b67f09SDavid van Moolenbroek# generate an XML file that captures the structure of 905*00b67f09SDavid van Moolenbroek# the code including all documentation. 906*00b67f09SDavid van Moolenbroek 907*00b67f09SDavid van MoolenbroekGENERATE_XML = YES 908*00b67f09SDavid van Moolenbroek 909*00b67f09SDavid van Moolenbroek# The XML_OUTPUT tag is used to specify where the XML pages will be put. 910*00b67f09SDavid van Moolenbroek# If a relative path is entered the value of OUTPUT_DIRECTORY will be 911*00b67f09SDavid van Moolenbroek# put in front of it. If left blank `xml' will be used as the default path. 912*00b67f09SDavid van Moolenbroek 913*00b67f09SDavid van MoolenbroekXML_OUTPUT = xml 914*00b67f09SDavid van Moolenbroek 915*00b67f09SDavid van Moolenbroek# The XML_SCHEMA tag can be used to specify an XML schema, 916*00b67f09SDavid van Moolenbroek# which can be used by a validating XML parser to check the 917*00b67f09SDavid van Moolenbroek# syntax of the XML files. 918*00b67f09SDavid van Moolenbroek 919*00b67f09SDavid van MoolenbroekXML_SCHEMA = 920*00b67f09SDavid van Moolenbroek 921*00b67f09SDavid van Moolenbroek# The XML_DTD tag can be used to specify an XML DTD, 922*00b67f09SDavid van Moolenbroek# which can be used by a validating XML parser to check the 923*00b67f09SDavid van Moolenbroek# syntax of the XML files. 924*00b67f09SDavid van Moolenbroek 925*00b67f09SDavid van MoolenbroekXML_DTD = 926*00b67f09SDavid van Moolenbroek 927*00b67f09SDavid van Moolenbroek# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 928*00b67f09SDavid van Moolenbroek# dump the program listings (including syntax highlighting 929*00b67f09SDavid van Moolenbroek# and cross-referencing information) to the XML output. Note that 930*00b67f09SDavid van Moolenbroek# enabling this will significantly increase the size of the XML output. 931*00b67f09SDavid van Moolenbroek 932*00b67f09SDavid van MoolenbroekXML_PROGRAMLISTING = YES 933*00b67f09SDavid van Moolenbroek 934*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 935*00b67f09SDavid van Moolenbroek# configuration options for the AutoGen Definitions output 936*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 937*00b67f09SDavid van Moolenbroek 938*00b67f09SDavid van Moolenbroek# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 939*00b67f09SDavid van Moolenbroek# generate an AutoGen Definitions (see autogen.sf.net) file 940*00b67f09SDavid van Moolenbroek# that captures the structure of the code including all 941*00b67f09SDavid van Moolenbroek# documentation. Note that this feature is still experimental 942*00b67f09SDavid van Moolenbroek# and incomplete at the moment. 943*00b67f09SDavid van Moolenbroek 944*00b67f09SDavid van MoolenbroekGENERATE_AUTOGEN_DEF = NO 945*00b67f09SDavid van Moolenbroek 946*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 947*00b67f09SDavid van Moolenbroek# configuration options related to the Perl module output 948*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 949*00b67f09SDavid van Moolenbroek 950*00b67f09SDavid van Moolenbroek# If the GENERATE_PERLMOD tag is set to YES Doxygen will 951*00b67f09SDavid van Moolenbroek# generate a Perl module file that captures the structure of 952*00b67f09SDavid van Moolenbroek# the code including all documentation. Note that this 953*00b67f09SDavid van Moolenbroek# feature is still experimental and incomplete at the 954*00b67f09SDavid van Moolenbroek# moment. 955*00b67f09SDavid van Moolenbroek 956*00b67f09SDavid van MoolenbroekGENERATE_PERLMOD = NO 957*00b67f09SDavid van Moolenbroek 958*00b67f09SDavid van Moolenbroek# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 959*00b67f09SDavid van Moolenbroek# the necessary Makefile rules, Perl scripts and LaTeX code to be able 960*00b67f09SDavid van Moolenbroek# to generate PDF and DVI output from the Perl module output. 961*00b67f09SDavid van Moolenbroek 962*00b67f09SDavid van MoolenbroekPERLMOD_LATEX = NO 963*00b67f09SDavid van Moolenbroek 964*00b67f09SDavid van Moolenbroek# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 965*00b67f09SDavid van Moolenbroek# nicely formatted so it can be parsed by a human reader. This is useful 966*00b67f09SDavid van Moolenbroek# if you want to understand what is going on. On the other hand, if this 967*00b67f09SDavid van Moolenbroek# tag is set to NO the size of the Perl module output will be much smaller 968*00b67f09SDavid van Moolenbroek# and Perl will parse it just the same. 969*00b67f09SDavid van Moolenbroek 970*00b67f09SDavid van MoolenbroekPERLMOD_PRETTY = YES 971*00b67f09SDavid van Moolenbroek 972*00b67f09SDavid van Moolenbroek# The names of the make variables in the generated doxyrules.make file 973*00b67f09SDavid van Moolenbroek# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 974*00b67f09SDavid van Moolenbroek# This is useful so different doxyrules.make files included by the same 975*00b67f09SDavid van Moolenbroek# Makefile don't overwrite each other's variables. 976*00b67f09SDavid van Moolenbroek 977*00b67f09SDavid van MoolenbroekPERLMOD_MAKEVAR_PREFIX = 978*00b67f09SDavid van Moolenbroek 979*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 980*00b67f09SDavid van Moolenbroek# Configuration options related to the preprocessor 981*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 982*00b67f09SDavid van Moolenbroek 983*00b67f09SDavid van Moolenbroek# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 984*00b67f09SDavid van Moolenbroek# evaluate all C-preprocessor directives found in the sources and include 985*00b67f09SDavid van Moolenbroek# files. 986*00b67f09SDavid van Moolenbroek 987*00b67f09SDavid van MoolenbroekENABLE_PREPROCESSING = YES 988*00b67f09SDavid van Moolenbroek 989*00b67f09SDavid van Moolenbroek# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 990*00b67f09SDavid van Moolenbroek# names in the source code. If set to NO (the default) only conditional 991*00b67f09SDavid van Moolenbroek# compilation will be performed. Macro expansion can be done in a controlled 992*00b67f09SDavid van Moolenbroek# way by setting EXPAND_ONLY_PREDEF to YES. 993*00b67f09SDavid van Moolenbroek 994*00b67f09SDavid van MoolenbroekMACRO_EXPANSION = NO 995*00b67f09SDavid van Moolenbroek 996*00b67f09SDavid van Moolenbroek# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 997*00b67f09SDavid van Moolenbroek# then the macro expansion is limited to the macros specified with the 998*00b67f09SDavid van Moolenbroek# PREDEFINED and EXPAND_AS_DEFINED tags. 999*00b67f09SDavid van Moolenbroek 1000*00b67f09SDavid van MoolenbroekEXPAND_ONLY_PREDEF = NO 1001*00b67f09SDavid van Moolenbroek 1002*00b67f09SDavid van Moolenbroek# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 1003*00b67f09SDavid van Moolenbroek# in the INCLUDE_PATH (see below) will be search if a #include is found. 1004*00b67f09SDavid van Moolenbroek 1005*00b67f09SDavid van MoolenbroekSEARCH_INCLUDES = YES 1006*00b67f09SDavid van Moolenbroek 1007*00b67f09SDavid van Moolenbroek# The INCLUDE_PATH tag can be used to specify one or more directories that 1008*00b67f09SDavid van Moolenbroek# contain include files that are not input files but should be processed by 1009*00b67f09SDavid van Moolenbroek# the preprocessor. 1010*00b67f09SDavid van Moolenbroek 1011*00b67f09SDavid van MoolenbroekINCLUDE_PATH = 1012*00b67f09SDavid van Moolenbroek 1013*00b67f09SDavid van Moolenbroek# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 1014*00b67f09SDavid van Moolenbroek# patterns (like *.h and *.hpp) to filter out the header-files in the 1015*00b67f09SDavid van Moolenbroek# directories. If left blank, the patterns specified with FILE_PATTERNS will 1016*00b67f09SDavid van Moolenbroek# be used. 1017*00b67f09SDavid van Moolenbroek 1018*00b67f09SDavid van MoolenbroekINCLUDE_FILE_PATTERNS = 1019*00b67f09SDavid van Moolenbroek 1020*00b67f09SDavid van Moolenbroek# The PREDEFINED tag can be used to specify one or more macro names that 1021*00b67f09SDavid van Moolenbroek# are defined before the preprocessor is started (similar to the -D option of 1022*00b67f09SDavid van Moolenbroek# gcc). The argument of the tag is a list of macros of the form: name 1023*00b67f09SDavid van Moolenbroek# or name=definition (no spaces). If the definition and the = are 1024*00b67f09SDavid van Moolenbroek# omitted =1 is assumed. To prevent a macro definition from being 1025*00b67f09SDavid van Moolenbroek# undefined via #undef or recursively expanded use the := operator 1026*00b67f09SDavid van Moolenbroek# instead of the = operator. 1027*00b67f09SDavid van Moolenbroek 1028*00b67f09SDavid van MoolenbroekPREDEFINED = 1029*00b67f09SDavid van Moolenbroek 1030*00b67f09SDavid van Moolenbroek# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 1031*00b67f09SDavid van Moolenbroek# this tag can be used to specify a list of macro names that should be expanded. 1032*00b67f09SDavid van Moolenbroek# The macro definition that is found in the sources will be used. 1033*00b67f09SDavid van Moolenbroek# Use the PREDEFINED tag if you want to use a different macro definition. 1034*00b67f09SDavid van Moolenbroek 1035*00b67f09SDavid van MoolenbroekEXPAND_AS_DEFINED = 1036*00b67f09SDavid van Moolenbroek 1037*00b67f09SDavid van Moolenbroek# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 1038*00b67f09SDavid van Moolenbroek# doxygen's preprocessor will remove all function-like macros that are alone 1039*00b67f09SDavid van Moolenbroek# on a line, have an all uppercase name, and do not end with a semicolon. Such 1040*00b67f09SDavid van Moolenbroek# function macros are typically used for boiler-plate code, and will confuse 1041*00b67f09SDavid van Moolenbroek# the parser if not removed. 1042*00b67f09SDavid van Moolenbroek 1043*00b67f09SDavid van MoolenbroekSKIP_FUNCTION_MACROS = YES 1044*00b67f09SDavid van Moolenbroek 1045*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 1046*00b67f09SDavid van Moolenbroek# Configuration::additions related to external references 1047*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 1048*00b67f09SDavid van Moolenbroek 1049*00b67f09SDavid van Moolenbroek# The TAGFILES option can be used to specify one or more tagfiles. 1050*00b67f09SDavid van Moolenbroek# Optionally an initial location of the external documentation 1051*00b67f09SDavid van Moolenbroek# can be added for each tagfile. The format of a tag file without 1052*00b67f09SDavid van Moolenbroek# this location is as follows: 1053*00b67f09SDavid van Moolenbroek# TAGFILES = file1 file2 ... 1054*00b67f09SDavid van Moolenbroek# Adding location for the tag files is done as follows: 1055*00b67f09SDavid van Moolenbroek# TAGFILES = file1=loc1 "file2 = loc2" ... 1056*00b67f09SDavid van Moolenbroek# where "loc1" and "loc2" can be relative or absolute paths or 1057*00b67f09SDavid van Moolenbroek# URLs. If a location is present for each tag, the installdox tool 1058*00b67f09SDavid van Moolenbroek# does not have to be run to correct the links. 1059*00b67f09SDavid van Moolenbroek# Note that each tag file must have a unique name 1060*00b67f09SDavid van Moolenbroek# (where the name does NOT include the path) 1061*00b67f09SDavid van Moolenbroek# If a tag file is not located in the directory in which doxygen 1062*00b67f09SDavid van Moolenbroek# is run, you must also specify the path to the tagfile here. 1063*00b67f09SDavid van Moolenbroek 1064*00b67f09SDavid van MoolenbroekTAGFILES = 1065*00b67f09SDavid van Moolenbroek 1066*00b67f09SDavid van Moolenbroek# When a file name is specified after GENERATE_TAGFILE, doxygen will create 1067*00b67f09SDavid van Moolenbroek# a tag file that is based on the input files it reads. 1068*00b67f09SDavid van Moolenbroek 1069*00b67f09SDavid van MoolenbroekGENERATE_TAGFILE = 1070*00b67f09SDavid van Moolenbroek 1071*00b67f09SDavid van Moolenbroek# If the ALLEXTERNALS tag is set to YES all external classes will be listed 1072*00b67f09SDavid van Moolenbroek# in the class index. If set to NO only the inherited external classes 1073*00b67f09SDavid van Moolenbroek# will be listed. 1074*00b67f09SDavid van Moolenbroek 1075*00b67f09SDavid van MoolenbroekALLEXTERNALS = NO 1076*00b67f09SDavid van Moolenbroek 1077*00b67f09SDavid van Moolenbroek# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 1078*00b67f09SDavid van Moolenbroek# in the modules index. If set to NO, only the current project's groups will 1079*00b67f09SDavid van Moolenbroek# be listed. 1080*00b67f09SDavid van Moolenbroek 1081*00b67f09SDavid van MoolenbroekEXTERNAL_GROUPS = YES 1082*00b67f09SDavid van Moolenbroek 1083*00b67f09SDavid van Moolenbroek# The PERL_PATH should be the absolute path and name of the perl script 1084*00b67f09SDavid van Moolenbroek# interpreter (i.e. the result of `which perl'). 1085*00b67f09SDavid van Moolenbroek 1086*00b67f09SDavid van MoolenbroekPERL_PATH = @PERL@ 1087*00b67f09SDavid van Moolenbroek 1088*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 1089*00b67f09SDavid van Moolenbroek# Configuration options related to the dot tool 1090*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 1091*00b67f09SDavid van Moolenbroek 1092*00b67f09SDavid van Moolenbroek# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 1093*00b67f09SDavid van Moolenbroek# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 1094*00b67f09SDavid van Moolenbroek# or super classes. Setting the tag to NO turns the diagrams off. Note that 1095*00b67f09SDavid van Moolenbroek# this option is superseded by the HAVE_DOT option below. This is only a 1096*00b67f09SDavid van Moolenbroek# fallback. It is recommended to install and use dot, since it yields more 1097*00b67f09SDavid van Moolenbroek# powerful graphs. 1098*00b67f09SDavid van Moolenbroek 1099*00b67f09SDavid van MoolenbroekCLASS_DIAGRAMS = YES 1100*00b67f09SDavid van Moolenbroek 1101*00b67f09SDavid van Moolenbroek# If set to YES, the inheritance and collaboration graphs will hide 1102*00b67f09SDavid van Moolenbroek# inheritance and usage relations if the target is undocumented 1103*00b67f09SDavid van Moolenbroek# or is not a class. 1104*00b67f09SDavid van Moolenbroek 1105*00b67f09SDavid van MoolenbroekHIDE_UNDOC_RELATIONS = YES 1106*00b67f09SDavid van Moolenbroek 1107*00b67f09SDavid van Moolenbroek# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 1108*00b67f09SDavid van Moolenbroek# available from the path. This tool is part of Graphviz, a graph visualization 1109*00b67f09SDavid van Moolenbroek# toolkit from AT&T and Lucent Bell Labs. The other options in this section 1110*00b67f09SDavid van Moolenbroek# have no effect if this option is set to NO (the default) 1111*00b67f09SDavid van Moolenbroek 1112*00b67f09SDavid van MoolenbroekHAVE_DOT = NO 1113*00b67f09SDavid van Moolenbroek 1114*00b67f09SDavid van Moolenbroek# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 1115*00b67f09SDavid van Moolenbroek# will generate a graph for each documented class showing the direct and 1116*00b67f09SDavid van Moolenbroek# indirect inheritance relations. Setting this tag to YES will force the 1117*00b67f09SDavid van Moolenbroek# the CLASS_DIAGRAMS tag to NO. 1118*00b67f09SDavid van Moolenbroek 1119*00b67f09SDavid van MoolenbroekCLASS_GRAPH = YES 1120*00b67f09SDavid van Moolenbroek 1121*00b67f09SDavid van Moolenbroek# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 1122*00b67f09SDavid van Moolenbroek# will generate a graph for each documented class showing the direct and 1123*00b67f09SDavid van Moolenbroek# indirect implementation dependencies (inheritance, containment, and 1124*00b67f09SDavid van Moolenbroek# class references variables) of the class with other documented classes. 1125*00b67f09SDavid van Moolenbroek 1126*00b67f09SDavid van MoolenbroekCOLLABORATION_GRAPH = YES 1127*00b67f09SDavid van Moolenbroek 1128*00b67f09SDavid van Moolenbroek# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 1129*00b67f09SDavid van Moolenbroek# will generate a graph for groups, showing the direct groups dependencies 1130*00b67f09SDavid van Moolenbroek 1131*00b67f09SDavid van MoolenbroekGROUP_GRAPHS = YES 1132*00b67f09SDavid van Moolenbroek 1133*00b67f09SDavid van Moolenbroek# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 1134*00b67f09SDavid van Moolenbroek# collaboration diagrams in a style similar to the OMG's Unified Modeling 1135*00b67f09SDavid van Moolenbroek# Language. 1136*00b67f09SDavid van Moolenbroek 1137*00b67f09SDavid van MoolenbroekUML_LOOK = NO 1138*00b67f09SDavid van Moolenbroek 1139*00b67f09SDavid van Moolenbroek# If set to YES, the inheritance and collaboration graphs will show the 1140*00b67f09SDavid van Moolenbroek# relations between templates and their instances. 1141*00b67f09SDavid van Moolenbroek 1142*00b67f09SDavid van MoolenbroekTEMPLATE_RELATIONS = NO 1143*00b67f09SDavid van Moolenbroek 1144*00b67f09SDavid van Moolenbroek# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 1145*00b67f09SDavid van Moolenbroek# tags are set to YES then doxygen will generate a graph for each documented 1146*00b67f09SDavid van Moolenbroek# file showing the direct and indirect include dependencies of the file with 1147*00b67f09SDavid van Moolenbroek# other documented files. 1148*00b67f09SDavid van Moolenbroek 1149*00b67f09SDavid van MoolenbroekINCLUDE_GRAPH = YES 1150*00b67f09SDavid van Moolenbroek 1151*00b67f09SDavid van Moolenbroek# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 1152*00b67f09SDavid van Moolenbroek# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 1153*00b67f09SDavid van Moolenbroek# documented header file showing the documented files that directly or 1154*00b67f09SDavid van Moolenbroek# indirectly include this file. 1155*00b67f09SDavid van Moolenbroek 1156*00b67f09SDavid van MoolenbroekINCLUDED_BY_GRAPH = YES 1157*00b67f09SDavid van Moolenbroek 1158*00b67f09SDavid van Moolenbroek# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will 1159*00b67f09SDavid van Moolenbroek# generate a call dependency graph for every global function or class method. 1160*00b67f09SDavid van Moolenbroek# Note that enabling this option will significantly increase the time of a run. 1161*00b67f09SDavid van Moolenbroek# So in most cases it will be better to enable call graphs for selected 1162*00b67f09SDavid van Moolenbroek# functions only using the \callgraph command. 1163*00b67f09SDavid van Moolenbroek 1164*00b67f09SDavid van MoolenbroekCALL_GRAPH = NO 1165*00b67f09SDavid van Moolenbroek 1166*00b67f09SDavid van Moolenbroek# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then doxygen will 1167*00b67f09SDavid van Moolenbroek# generate a caller dependency graph for every global function or class method. 1168*00b67f09SDavid van Moolenbroek# Note that enabling this option will significantly increase the time of a run. 1169*00b67f09SDavid van Moolenbroek# So in most cases it will be better to enable caller graphs for selected 1170*00b67f09SDavid van Moolenbroek# functions only using the \callergraph command. 1171*00b67f09SDavid van Moolenbroek 1172*00b67f09SDavid van MoolenbroekCALLER_GRAPH = YES 1173*00b67f09SDavid van Moolenbroek 1174*00b67f09SDavid van Moolenbroek# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 1175*00b67f09SDavid van Moolenbroek# will graphical hierarchy of all classes instead of a textual one. 1176*00b67f09SDavid van Moolenbroek 1177*00b67f09SDavid van MoolenbroekGRAPHICAL_HIERARCHY = YES 1178*00b67f09SDavid van Moolenbroek 1179*00b67f09SDavid van Moolenbroek# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 1180*00b67f09SDavid van Moolenbroek# then doxygen will show the dependencies a directory has on other directories 1181*00b67f09SDavid van Moolenbroek# in a graphical way. The dependency relations are determined by the #include 1182*00b67f09SDavid van Moolenbroek# relations between the files in the directories. 1183*00b67f09SDavid van Moolenbroek 1184*00b67f09SDavid van MoolenbroekDIRECTORY_GRAPH = YES 1185*00b67f09SDavid van Moolenbroek 1186*00b67f09SDavid van Moolenbroek# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 1187*00b67f09SDavid van Moolenbroek# generated by dot. Possible values are png, jpg, or gif 1188*00b67f09SDavid van Moolenbroek# If left blank png will be used. 1189*00b67f09SDavid van Moolenbroek 1190*00b67f09SDavid van MoolenbroekDOT_IMAGE_FORMAT = png 1191*00b67f09SDavid van Moolenbroek 1192*00b67f09SDavid van Moolenbroek# The tag DOT_PATH can be used to specify the path where the dot tool can be 1193*00b67f09SDavid van Moolenbroek# found. If left blank, it is assumed the dot tool can be found in the path. 1194*00b67f09SDavid van Moolenbroek 1195*00b67f09SDavid van MoolenbroekDOT_PATH = 1196*00b67f09SDavid van Moolenbroek 1197*00b67f09SDavid van Moolenbroek# The DOTFILE_DIRS tag can be used to specify one or more directories that 1198*00b67f09SDavid van Moolenbroek# contain dot files that are included in the documentation (see the 1199*00b67f09SDavid van Moolenbroek# \dotfile command). 1200*00b67f09SDavid van Moolenbroek 1201*00b67f09SDavid van MoolenbroekDOTFILE_DIRS = 1202*00b67f09SDavid van Moolenbroek 1203*00b67f09SDavid van Moolenbroek# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 1204*00b67f09SDavid van Moolenbroek# (in pixels) of the graphs generated by dot. If a graph becomes larger than 1205*00b67f09SDavid van Moolenbroek# this value, doxygen will try to truncate the graph, so that it fits within 1206*00b67f09SDavid van Moolenbroek# the specified constraint. Beware that most browsers cannot cope with very 1207*00b67f09SDavid van Moolenbroek# large images. 1208*00b67f09SDavid van Moolenbroek 1209*00b67f09SDavid van MoolenbroekMAX_DOT_GRAPH_WIDTH = 1024 1210*00b67f09SDavid van Moolenbroek 1211*00b67f09SDavid van Moolenbroek# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 1212*00b67f09SDavid van Moolenbroek# (in pixels) of the graphs generated by dot. If a graph becomes larger than 1213*00b67f09SDavid van Moolenbroek# this value, doxygen will try to truncate the graph, so that it fits within 1214*00b67f09SDavid van Moolenbroek# the specified constraint. Beware that most browsers cannot cope with very 1215*00b67f09SDavid van Moolenbroek# large images. 1216*00b67f09SDavid van Moolenbroek 1217*00b67f09SDavid van MoolenbroekMAX_DOT_GRAPH_HEIGHT = 1024 1218*00b67f09SDavid van Moolenbroek 1219*00b67f09SDavid van Moolenbroek# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 1220*00b67f09SDavid van Moolenbroek# graphs generated by dot. A depth value of 3 means that only nodes reachable 1221*00b67f09SDavid van Moolenbroek# from the root by following a path via at most 3 edges will be shown. Nodes 1222*00b67f09SDavid van Moolenbroek# that lay further from the root node will be omitted. Note that setting this 1223*00b67f09SDavid van Moolenbroek# option to 1 or 2 may greatly reduce the computation time needed for large 1224*00b67f09SDavid van Moolenbroek# code bases. Also note that a graph may be further truncated if the graph's 1225*00b67f09SDavid van Moolenbroek# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH 1226*00b67f09SDavid van Moolenbroek# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), 1227*00b67f09SDavid van Moolenbroek# the graph is not depth-constrained. 1228*00b67f09SDavid van Moolenbroek 1229*00b67f09SDavid van MoolenbroekMAX_DOT_GRAPH_DEPTH = 1000 1230*00b67f09SDavid van Moolenbroek 1231*00b67f09SDavid van Moolenbroek# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 1232*00b67f09SDavid van Moolenbroek# background. This is disabled by default, which results in a white background. 1233*00b67f09SDavid van Moolenbroek# Warning: Depending on the platform used, enabling this option may lead to 1234*00b67f09SDavid van Moolenbroek# badly anti-aliased labels on the edges of a graph (i.e. they become hard to 1235*00b67f09SDavid van Moolenbroek# read). 1236*00b67f09SDavid van Moolenbroek 1237*00b67f09SDavid van MoolenbroekDOT_TRANSPARENT = NO 1238*00b67f09SDavid van Moolenbroek 1239*00b67f09SDavid van Moolenbroek# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 1240*00b67f09SDavid van Moolenbroek# files in one run (i.e. multiple -o and -T options on the command line). This 1241*00b67f09SDavid van Moolenbroek# makes dot run faster, but since only newer versions of dot (>1.8.10) 1242*00b67f09SDavid van Moolenbroek# support this, this feature is disabled by default. 1243*00b67f09SDavid van Moolenbroek 1244*00b67f09SDavid van MoolenbroekDOT_MULTI_TARGETS = YES 1245*00b67f09SDavid van Moolenbroek 1246*00b67f09SDavid van Moolenbroek# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 1247*00b67f09SDavid van Moolenbroek# generate a legend page explaining the meaning of the various boxes and 1248*00b67f09SDavid van Moolenbroek# arrows in the dot generated graphs. 1249*00b67f09SDavid van Moolenbroek 1250*00b67f09SDavid van MoolenbroekGENERATE_LEGEND = YES 1251*00b67f09SDavid van Moolenbroek 1252*00b67f09SDavid van Moolenbroek# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 1253*00b67f09SDavid van Moolenbroek# remove the intermediate dot files that are used to generate 1254*00b67f09SDavid van Moolenbroek# the various graphs. 1255*00b67f09SDavid van Moolenbroek 1256*00b67f09SDavid van MoolenbroekDOT_CLEANUP = YES 1257*00b67f09SDavid van Moolenbroek 1258*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 1259*00b67f09SDavid van Moolenbroek# Configuration::additions related to the search engine 1260*00b67f09SDavid van Moolenbroek#--------------------------------------------------------------------------- 1261*00b67f09SDavid van Moolenbroek 1262*00b67f09SDavid van Moolenbroek# The SEARCHENGINE tag specifies whether or not a search engine should be 1263*00b67f09SDavid van Moolenbroek# used. If set to NO the values of all tags below this one will be ignored. 1264*00b67f09SDavid van Moolenbroek 1265*00b67f09SDavid van MoolenbroekSEARCHENGINE = NO 1266*00b67f09SDavid van Moolenbroek 1267*00b67f09SDavid van Moolenbroek# Local Variables: 1268*00b67f09SDavid van Moolenbroek# compile-command: "doxygen" 1269*00b67f09SDavid van Moolenbroek# End: 1270