1159b3361Sopenharmony_ci# Doxyfile 1.2.2 2159b3361Sopenharmony_ci 3159b3361Sopenharmony_ci# This file describes the settings to be used by doxygen for a project 4159b3361Sopenharmony_ci# 5159b3361Sopenharmony_ci# All text after a hash (#) is considered a comment and will be ignored 6159b3361Sopenharmony_ci# The format is: 7159b3361Sopenharmony_ci# TAG = value [value, ...] 8159b3361Sopenharmony_ci# For lists items can also be appended using: 9159b3361Sopenharmony_ci# TAG += value [value, ...] 10159b3361Sopenharmony_ci# Values that contain spaces should be placed between quotes (" ") 11159b3361Sopenharmony_ci 12159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 13159b3361Sopenharmony_ci# General configuration options 14159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 15159b3361Sopenharmony_ci 16159b3361Sopenharmony_ci# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 17159b3361Sopenharmony_ci# by quotes) that should identify the project. 18159b3361Sopenharmony_ci 19159b3361Sopenharmony_ciPROJECT_NAME = TinyXml 20159b3361Sopenharmony_ci 21159b3361Sopenharmony_ci# The PROJECT_NUMBER tag can be used to enter a project or revision number. 22159b3361Sopenharmony_ci# This could be handy for archiving the generated documentation or 23159b3361Sopenharmony_ci# if some version control system is used. 24159b3361Sopenharmony_ci 25159b3361Sopenharmony_ciPROJECT_NUMBER = 26159b3361Sopenharmony_ci 27159b3361Sopenharmony_ci# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 28159b3361Sopenharmony_ci# base path where the generated documentation will be put. 29159b3361Sopenharmony_ci# If a relative path is entered, it will be relative to the location 30159b3361Sopenharmony_ci# where doxygen was started. If left blank the current directory will be used. 31159b3361Sopenharmony_ci 32159b3361Sopenharmony_ciOUTPUT_DIRECTORY = ./docs 33159b3361Sopenharmony_ci 34159b3361Sopenharmony_ci# The OUTPUT_LANGUAGE tag is used to specify the language in which all 35159b3361Sopenharmony_ci# documentation generated by doxygen is written. Doxygen will use this 36159b3361Sopenharmony_ci# information to generate all constant output in the proper language. 37159b3361Sopenharmony_ci# The default language is English, other supported languages are: 38159b3361Sopenharmony_ci# Dutch, French, Italian, Czech, Swedish, German, Finnish, Japanese, 39159b3361Sopenharmony_ci# Korean, Hungarian, Spanish, Romanian, Russian, Croatian, Polish, and 40159b3361Sopenharmony_ci# Portuguese. 41159b3361Sopenharmony_ci 42159b3361Sopenharmony_ciOUTPUT_LANGUAGE = English 43159b3361Sopenharmony_ci 44159b3361Sopenharmony_ci# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 45159b3361Sopenharmony_ci# documentation are documented, even if no documentation was available. 46159b3361Sopenharmony_ci# Private class members and static file members will be hidden unless 47159b3361Sopenharmony_ci# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 48159b3361Sopenharmony_ci 49159b3361Sopenharmony_ciEXTRACT_ALL = NO 50159b3361Sopenharmony_ci 51159b3361Sopenharmony_ci# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 52159b3361Sopenharmony_ci# will be included in the documentation. 53159b3361Sopenharmony_ci 54159b3361Sopenharmony_ciEXTRACT_PRIVATE = NO 55159b3361Sopenharmony_ci 56159b3361Sopenharmony_ci# If the EXTRACT_STATIC tag is set to YES all static members of a file 57159b3361Sopenharmony_ci# will be included in the documentation. 58159b3361Sopenharmony_ci 59159b3361Sopenharmony_ciEXTRACT_STATIC = NO 60159b3361Sopenharmony_ci 61159b3361Sopenharmony_ci# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 62159b3361Sopenharmony_ci# undocumented members of documented classes, files or namespaces. 63159b3361Sopenharmony_ci# If set to NO (the default) these members will be included in the 64159b3361Sopenharmony_ci# various overviews, but no documentation section is generated. 65159b3361Sopenharmony_ci# This option has no effect if EXTRACT_ALL is enabled. 66159b3361Sopenharmony_ci 67159b3361Sopenharmony_ciHIDE_UNDOC_MEMBERS = YES 68159b3361Sopenharmony_ci 69159b3361Sopenharmony_ci# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 70159b3361Sopenharmony_ci# undocumented classes that are normally visible in the class hierarchy. 71159b3361Sopenharmony_ci# If set to NO (the default) these class will be included in the various 72159b3361Sopenharmony_ci# overviews. This option has no effect if EXTRACT_ALL is enabled. 73159b3361Sopenharmony_ci 74159b3361Sopenharmony_ciHIDE_UNDOC_CLASSES = YES 75159b3361Sopenharmony_ci 76159b3361Sopenharmony_ci# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 77159b3361Sopenharmony_ci# include brief member descriptions after the members that are listed in 78159b3361Sopenharmony_ci# the file and class documentation (similar to JavaDoc). 79159b3361Sopenharmony_ci# Set to NO to disable this. 80159b3361Sopenharmony_ci 81159b3361Sopenharmony_ciBRIEF_MEMBER_DESC = YES 82159b3361Sopenharmony_ci 83159b3361Sopenharmony_ci# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 84159b3361Sopenharmony_ci# the brief description of a member or function before the detailed description. 85159b3361Sopenharmony_ci# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 86159b3361Sopenharmony_ci# brief descriptions will be completely suppressed. 87159b3361Sopenharmony_ci 88159b3361Sopenharmony_ciREPEAT_BRIEF = YES 89159b3361Sopenharmony_ci 90159b3361Sopenharmony_ci# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 91159b3361Sopenharmony_ci# Doxygen will generate a detailed section even if there is only a brief 92159b3361Sopenharmony_ci# description. 93159b3361Sopenharmony_ci 94159b3361Sopenharmony_ciALWAYS_DETAILED_SEC = NO 95159b3361Sopenharmony_ci 96159b3361Sopenharmony_ci# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 97159b3361Sopenharmony_ci# path before files name in the file list and in the header files. If set 98159b3361Sopenharmony_ci# to NO the shortest path that makes the file name unique will be used. 99159b3361Sopenharmony_ci 100159b3361Sopenharmony_ciFULL_PATH_NAMES = NO 101159b3361Sopenharmony_ci 102159b3361Sopenharmony_ci# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 103159b3361Sopenharmony_ci# can be used to strip a user defined part of the path. Stripping is 104159b3361Sopenharmony_ci# only done if one of the specified strings matches the left-hand part of 105159b3361Sopenharmony_ci# the path. It is allowed to use relative paths in the argument list. 106159b3361Sopenharmony_ci 107159b3361Sopenharmony_ciSTRIP_FROM_PATH = 108159b3361Sopenharmony_ci 109159b3361Sopenharmony_ci# The INTERNAL_DOCS tag determines if documentation 110159b3361Sopenharmony_ci# that is typed after a \internal command is included. If the tag is set 111159b3361Sopenharmony_ci# to NO (the default) then the documentation will be excluded. 112159b3361Sopenharmony_ci# Set it to YES to include the internal documentation. 113159b3361Sopenharmony_ci 114159b3361Sopenharmony_ciINTERNAL_DOCS = NO 115159b3361Sopenharmony_ci 116159b3361Sopenharmony_ci# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 117159b3361Sopenharmony_ci# generate a class diagram (in Html and LaTeX) for classes with base or 118159b3361Sopenharmony_ci# super classes. Setting the tag to NO turns the diagrams off. 119159b3361Sopenharmony_ci 120159b3361Sopenharmony_ciCLASS_DIAGRAMS = YES 121159b3361Sopenharmony_ci 122159b3361Sopenharmony_ci# If the SOURCE_BROWSER tag is set to YES then a list of source files will 123159b3361Sopenharmony_ci# be generated. Documented entities will be cross-referenced with these sources. 124159b3361Sopenharmony_ci 125159b3361Sopenharmony_ciSOURCE_BROWSER = NO 126159b3361Sopenharmony_ci 127159b3361Sopenharmony_ci# Setting the INLINE_SOURCES tag to YES will include the body 128159b3361Sopenharmony_ci# of functions and classes directly in the documentation. 129159b3361Sopenharmony_ci 130159b3361Sopenharmony_ciINLINE_SOURCES = NO 131159b3361Sopenharmony_ci 132159b3361Sopenharmony_ci# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 133159b3361Sopenharmony_ci# doxygen to hide any special comment blocks from generated source code 134159b3361Sopenharmony_ci# fragments. Normal C and C++ comments will always remain visible. 135159b3361Sopenharmony_ci 136159b3361Sopenharmony_ciSTRIP_CODE_COMMENTS = YES 137159b3361Sopenharmony_ci 138159b3361Sopenharmony_ci# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 139159b3361Sopenharmony_ci# file names in lower case letters. If set to YES upper case letters are also 140159b3361Sopenharmony_ci# allowed. This is useful if you have classes or files whose names only differ 141159b3361Sopenharmony_ci# in case and if your file system supports case sensitive file names. Windows 142159b3361Sopenharmony_ci# users are adviced to set this option to NO. 143159b3361Sopenharmony_ci 144159b3361Sopenharmony_ciCASE_SENSE_NAMES = YES 145159b3361Sopenharmony_ci 146159b3361Sopenharmony_ci# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 147159b3361Sopenharmony_ci# will show members with their full class and namespace scopes in the 148159b3361Sopenharmony_ci# documentation. If set to YES the scope will be hidden. 149159b3361Sopenharmony_ci 150159b3361Sopenharmony_ciHIDE_SCOPE_NAMES = NO 151159b3361Sopenharmony_ci 152159b3361Sopenharmony_ci# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 153159b3361Sopenharmony_ci# will generate a verbatim copy of the header file for each class for 154159b3361Sopenharmony_ci# which an include is specified. Set to NO to disable this. 155159b3361Sopenharmony_ci 156159b3361Sopenharmony_ciVERBATIM_HEADERS = YES 157159b3361Sopenharmony_ci 158159b3361Sopenharmony_ci# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 159159b3361Sopenharmony_ci# will put list of the files that are included by a file in the documentation 160159b3361Sopenharmony_ci# of that file. 161159b3361Sopenharmony_ci 162159b3361Sopenharmony_ciSHOW_INCLUDE_FILES = YES 163159b3361Sopenharmony_ci 164159b3361Sopenharmony_ci# If the JAVADOC_AUTOBRIEF tag is set to YES (the default) then Doxygen 165159b3361Sopenharmony_ci# will interpret the first line (until the first dot) of a JavaDoc-style 166159b3361Sopenharmony_ci# comment as the brief description. If set to NO, the Javadoc-style will 167159b3361Sopenharmony_ci# behave just like the Qt-style comments. 168159b3361Sopenharmony_ci 169159b3361Sopenharmony_ciJAVADOC_AUTOBRIEF = YES 170159b3361Sopenharmony_ci 171159b3361Sopenharmony_ci# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 172159b3361Sopenharmony_ci# member inherits the documentation from any documented member that it 173159b3361Sopenharmony_ci# reimplements. 174159b3361Sopenharmony_ci 175159b3361Sopenharmony_ciINHERIT_DOCS = YES 176159b3361Sopenharmony_ci 177159b3361Sopenharmony_ci# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 178159b3361Sopenharmony_ci# is inserted in the documentation for inline members. 179159b3361Sopenharmony_ci 180159b3361Sopenharmony_ciINLINE_INFO = YES 181159b3361Sopenharmony_ci 182159b3361Sopenharmony_ci# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 183159b3361Sopenharmony_ci# will sort the (detailed) documentation of file and class members 184159b3361Sopenharmony_ci# alphabetically by member name. If set to NO the members will appear in 185159b3361Sopenharmony_ci# declaration order. 186159b3361Sopenharmony_ci 187159b3361Sopenharmony_ciSORT_MEMBER_DOCS = YES 188159b3361Sopenharmony_ci 189159b3361Sopenharmony_ci# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 190159b3361Sopenharmony_ci# tag is set to YES, then doxygen will reuse the documentation of the first 191159b3361Sopenharmony_ci# member in the group (if any) for the other members of the group. By default 192159b3361Sopenharmony_ci# all members of a group must be documented explicitly. 193159b3361Sopenharmony_ci 194159b3361Sopenharmony_ciDISTRIBUTE_GROUP_DOC = NO 195159b3361Sopenharmony_ci 196159b3361Sopenharmony_ci# The TAB_SIZE tag can be used to set the number of spaces in a tab. 197159b3361Sopenharmony_ci# Doxygen uses this value to replace tabs by spaces in code fragments. 198159b3361Sopenharmony_ci 199159b3361Sopenharmony_ciTAB_SIZE = 4 200159b3361Sopenharmony_ci 201159b3361Sopenharmony_ci# The ENABLE_SECTIONS tag can be used to enable conditional 202159b3361Sopenharmony_ci# documentation sections, marked by \if sectionname ... \endif. 203159b3361Sopenharmony_ci 204159b3361Sopenharmony_ciENABLED_SECTIONS = 205159b3361Sopenharmony_ci 206159b3361Sopenharmony_ci# The GENERATE_TODOLIST tag can be used to enable (YES) or 207159b3361Sopenharmony_ci# disable (NO) the todo list. This list is created by putting \todo 208159b3361Sopenharmony_ci# commands in the documentation. 209159b3361Sopenharmony_ci 210159b3361Sopenharmony_ciGENERATE_TODOLIST = YES 211159b3361Sopenharmony_ci 212159b3361Sopenharmony_ci# The GENERATE_TESTLIST tag can be used to enable (YES) or 213159b3361Sopenharmony_ci# disable (NO) the test list. This list is created by putting \test 214159b3361Sopenharmony_ci# commands in the documentation. 215159b3361Sopenharmony_ci 216159b3361Sopenharmony_ciGENERATE_TESTLIST = YES 217159b3361Sopenharmony_ci 218159b3361Sopenharmony_ci# This tag can be used to specify a number of aliases that acts 219159b3361Sopenharmony_ci# as commands in the documentation. An alias has the form "name=value". 220159b3361Sopenharmony_ci# For example adding "sideeffect=\par Side Effects:\n" will allow you to 221159b3361Sopenharmony_ci# put the command \sideeffect (or @sideeffect) in the documentation, which 222159b3361Sopenharmony_ci# will result in a user defined paragraph with heading "Side Effects:". 223159b3361Sopenharmony_ci# You can put \n's in the value part of an alias to insert newlines. 224159b3361Sopenharmony_ci 225159b3361Sopenharmony_ciALIASES = 226159b3361Sopenharmony_ci 227159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 228159b3361Sopenharmony_ci# configuration options related to warning and progress messages 229159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 230159b3361Sopenharmony_ci 231159b3361Sopenharmony_ci# The QUIET tag can be used to turn on/off the messages that are generated 232159b3361Sopenharmony_ci# by doxygen. Possible values are YES and NO. If left blank NO is used. 233159b3361Sopenharmony_ci 234159b3361Sopenharmony_ciQUIET = NO 235159b3361Sopenharmony_ci 236159b3361Sopenharmony_ci# The WARNINGS tag can be used to turn on/off the warning messages that are 237159b3361Sopenharmony_ci# generated by doxygen. Possible values are YES and NO. If left blank 238159b3361Sopenharmony_ci# NO is used. 239159b3361Sopenharmony_ci 240159b3361Sopenharmony_ciWARNINGS = YES 241159b3361Sopenharmony_ci 242159b3361Sopenharmony_ci# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 243159b3361Sopenharmony_ci# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 244159b3361Sopenharmony_ci# automatically be disabled. 245159b3361Sopenharmony_ci 246159b3361Sopenharmony_ciWARN_IF_UNDOCUMENTED = YES 247159b3361Sopenharmony_ci 248159b3361Sopenharmony_ci# The WARN_FORMAT tag determines the format of the warning messages that 249159b3361Sopenharmony_ci# doxygen can produce. The string should contain the $file, $line, and $text 250159b3361Sopenharmony_ci# tags, which will be replaced by the file and line number from which the 251159b3361Sopenharmony_ci# warning originated and the warning text. 252159b3361Sopenharmony_ci 253159b3361Sopenharmony_ciWARN_FORMAT = "$file:$line: $text" 254159b3361Sopenharmony_ci 255159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 256159b3361Sopenharmony_ci# configuration options related to the input files 257159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 258159b3361Sopenharmony_ci 259159b3361Sopenharmony_ci# The INPUT tag can be used to specify the files and/or directories that contain 260159b3361Sopenharmony_ci# documented source files. You may enter file names like "myfile.cpp" or 261159b3361Sopenharmony_ci# directories like "/usr/src/myproject". Separate the files or directories 262159b3361Sopenharmony_ci# with spaces. 263159b3361Sopenharmony_ci 264159b3361Sopenharmony_ciINPUT = . "readme.txt" 265159b3361Sopenharmony_ci 266159b3361Sopenharmony_ci# If the value of the INPUT tag contains directories, you can use the 267159b3361Sopenharmony_ci# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 268159b3361Sopenharmony_ci# and *.h) to filter out the source-files in the directories. If left 269159b3361Sopenharmony_ci# blank all files are included. 270159b3361Sopenharmony_ci 271159b3361Sopenharmony_ciFILE_PATTERNS = *.h 272159b3361Sopenharmony_ci 273159b3361Sopenharmony_ci# The RECURSIVE tag can be used to turn specify whether or not subdirectories 274159b3361Sopenharmony_ci# should be searched for input files as well. Possible values are YES and NO. 275159b3361Sopenharmony_ci# If left blank NO is used. 276159b3361Sopenharmony_ci 277159b3361Sopenharmony_ciRECURSIVE = NO 278159b3361Sopenharmony_ci 279159b3361Sopenharmony_ci# The EXCLUDE tag can be used to specify files and/or directories that should 280159b3361Sopenharmony_ci# excluded from the INPUT source files. This way you can easily exclude a 281159b3361Sopenharmony_ci# subdirectory from a directory tree whose root is specified with the INPUT tag. 282159b3361Sopenharmony_ci 283159b3361Sopenharmony_ciEXCLUDE = 284159b3361Sopenharmony_ci 285159b3361Sopenharmony_ci# If the value of the INPUT tag contains directories, you can use the 286159b3361Sopenharmony_ci# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 287159b3361Sopenharmony_ci# certain files from those directories. 288159b3361Sopenharmony_ci 289159b3361Sopenharmony_ciEXCLUDE_PATTERNS = 290159b3361Sopenharmony_ci 291159b3361Sopenharmony_ci# The EXAMPLE_PATH tag can be used to specify one or more files or 292159b3361Sopenharmony_ci# directories that contain example code fragments that are included (see 293159b3361Sopenharmony_ci# the \include command). 294159b3361Sopenharmony_ci 295159b3361Sopenharmony_ciEXAMPLE_PATH = 296159b3361Sopenharmony_ci 297159b3361Sopenharmony_ci# If the value of the EXAMPLE_PATH tag contains directories, you can use the 298159b3361Sopenharmony_ci# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 299159b3361Sopenharmony_ci# and *.h) to filter out the source-files in the directories. If left 300159b3361Sopenharmony_ci# blank all files are included. 301159b3361Sopenharmony_ci 302159b3361Sopenharmony_ciEXAMPLE_PATTERNS = 303159b3361Sopenharmony_ci 304159b3361Sopenharmony_ci# The IMAGE_PATH tag can be used to specify one or more files or 305159b3361Sopenharmony_ci# directories that contain image that are included in the documentation (see 306159b3361Sopenharmony_ci# the \image command). 307159b3361Sopenharmony_ci 308159b3361Sopenharmony_ciIMAGE_PATH = 309159b3361Sopenharmony_ci 310159b3361Sopenharmony_ci# The INPUT_FILTER tag can be used to specify a program that doxygen should 311159b3361Sopenharmony_ci# invoke to filter for each input file. Doxygen will invoke the filter program 312159b3361Sopenharmony_ci# by executing (via popen()) the command <filter> <input-file>, where <filter> 313159b3361Sopenharmony_ci# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 314159b3361Sopenharmony_ci# input file. Doxygen will then use the output that the filter program writes 315159b3361Sopenharmony_ci# to standard output. 316159b3361Sopenharmony_ci 317159b3361Sopenharmony_ciINPUT_FILTER = 318159b3361Sopenharmony_ci 319159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 320159b3361Sopenharmony_ci# configuration options related to the alphabetical class index 321159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 322159b3361Sopenharmony_ci 323159b3361Sopenharmony_ci# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 324159b3361Sopenharmony_ci# of all compounds will be generated. Enable this if the project 325159b3361Sopenharmony_ci# contains a lot of classes, structs, unions or interfaces. 326159b3361Sopenharmony_ci 327159b3361Sopenharmony_ciALPHABETICAL_INDEX = NO 328159b3361Sopenharmony_ci 329159b3361Sopenharmony_ci# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 330159b3361Sopenharmony_ci# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 331159b3361Sopenharmony_ci# in which this list will be split (can be a number in the range [1..20]) 332159b3361Sopenharmony_ci 333159b3361Sopenharmony_ciCOLS_IN_ALPHA_INDEX = 5 334159b3361Sopenharmony_ci 335159b3361Sopenharmony_ci# In case all classes in a project start with a common prefix, all 336159b3361Sopenharmony_ci# classes will be put under the same header in the alphabetical index. 337159b3361Sopenharmony_ci# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 338159b3361Sopenharmony_ci# should be ignored while generating the index headers. 339159b3361Sopenharmony_ci 340159b3361Sopenharmony_ciIGNORE_PREFIX = 341159b3361Sopenharmony_ci 342159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 343159b3361Sopenharmony_ci# configuration options related to the HTML output 344159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 345159b3361Sopenharmony_ci 346159b3361Sopenharmony_ci# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 347159b3361Sopenharmony_ci# generate HTML output. 348159b3361Sopenharmony_ci 349159b3361Sopenharmony_ciGENERATE_HTML = YES 350159b3361Sopenharmony_ci 351159b3361Sopenharmony_ci# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 352159b3361Sopenharmony_ci# If a relative path is entered the value of OUTPUT_DIRECTORY will be 353159b3361Sopenharmony_ci# put in front of it. If left blank `html' will be used as the default path. 354159b3361Sopenharmony_ci 355159b3361Sopenharmony_ciHTML_OUTPUT = . 356159b3361Sopenharmony_ci 357159b3361Sopenharmony_ci# The HTML_HEADER tag can be used to specify a personal HTML header for 358159b3361Sopenharmony_ci# each generated HTML page. If it is left blank doxygen will generate a 359159b3361Sopenharmony_ci# standard header. 360159b3361Sopenharmony_ci 361159b3361Sopenharmony_ciHTML_HEADER = 362159b3361Sopenharmony_ci 363159b3361Sopenharmony_ci# The HTML_FOOTER tag can be used to specify a personal HTML footer for 364159b3361Sopenharmony_ci# each generated HTML page. If it is left blank doxygen will generate a 365159b3361Sopenharmony_ci# standard footer. 366159b3361Sopenharmony_ci 367159b3361Sopenharmony_ciHTML_FOOTER = 368159b3361Sopenharmony_ci 369159b3361Sopenharmony_ci# The HTML_STYLESHEET tag can be used to specify a user defined cascading 370159b3361Sopenharmony_ci# style sheet that is used by each HTML page. It can be used to 371159b3361Sopenharmony_ci# fine-tune the look of the HTML output. If the tag is left blank doxygen 372159b3361Sopenharmony_ci# will generate a default style sheet 373159b3361Sopenharmony_ci 374159b3361Sopenharmony_ciHTML_STYLESHEET = 375159b3361Sopenharmony_ci 376159b3361Sopenharmony_ci# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 377159b3361Sopenharmony_ci# files or namespaces will be aligned in HTML using tables. If set to 378159b3361Sopenharmony_ci# NO a bullet list will be used. 379159b3361Sopenharmony_ci 380159b3361Sopenharmony_ciHTML_ALIGN_MEMBERS = YES 381159b3361Sopenharmony_ci 382159b3361Sopenharmony_ci# If the GENERATE_HTMLHELP tag is set to YES, additional index files 383159b3361Sopenharmony_ci# will be generated that can be used as input for tools like the 384159b3361Sopenharmony_ci# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 385159b3361Sopenharmony_ci# of the generated HTML documentation. 386159b3361Sopenharmony_ci 387159b3361Sopenharmony_ciGENERATE_HTMLHELP = NO 388159b3361Sopenharmony_ci 389159b3361Sopenharmony_ci# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 390159b3361Sopenharmony_ci# top of each HTML page. The value NO (the default) enables the index and 391159b3361Sopenharmony_ci# the value YES disables it. 392159b3361Sopenharmony_ci 393159b3361Sopenharmony_ciDISABLE_INDEX = NO 394159b3361Sopenharmony_ci 395159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 396159b3361Sopenharmony_ci# configuration options related to the LaTeX output 397159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 398159b3361Sopenharmony_ci 399159b3361Sopenharmony_ci# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 400159b3361Sopenharmony_ci# generate Latex output. 401159b3361Sopenharmony_ci 402159b3361Sopenharmony_ciGENERATE_LATEX = NO 403159b3361Sopenharmony_ci 404159b3361Sopenharmony_ci# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 405159b3361Sopenharmony_ci# If a relative path is entered the value of OUTPUT_DIRECTORY will be 406159b3361Sopenharmony_ci# put in front of it. If left blank `latex' will be used as the default path. 407159b3361Sopenharmony_ci 408159b3361Sopenharmony_ciLATEX_OUTPUT = latex 409159b3361Sopenharmony_ci 410159b3361Sopenharmony_ci# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 411159b3361Sopenharmony_ci# LaTeX documents. This may be useful for small projects and may help to 412159b3361Sopenharmony_ci# save some trees in general. 413159b3361Sopenharmony_ci 414159b3361Sopenharmony_ciCOMPACT_LATEX = NO 415159b3361Sopenharmony_ci 416159b3361Sopenharmony_ci# The PAPER_TYPE tag can be used to set the paper type that is used 417159b3361Sopenharmony_ci# by the printer. Possible values are: a4, a4wide, letter, legal and 418159b3361Sopenharmony_ci# executive. If left blank a4wide will be used. 419159b3361Sopenharmony_ci 420159b3361Sopenharmony_ciPAPER_TYPE = a4wide 421159b3361Sopenharmony_ci 422159b3361Sopenharmony_ci# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 423159b3361Sopenharmony_ci# packages that should be included in the LaTeX output. 424159b3361Sopenharmony_ci 425159b3361Sopenharmony_ciEXTRA_PACKAGES = 426159b3361Sopenharmony_ci 427159b3361Sopenharmony_ci# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 428159b3361Sopenharmony_ci# the generated latex document. The header should contain everything until 429159b3361Sopenharmony_ci# the first chapter. If it is left blank doxygen will generate a 430159b3361Sopenharmony_ci# standard header. Notice: only use this tag if you know what you are doing! 431159b3361Sopenharmony_ci 432159b3361Sopenharmony_ciLATEX_HEADER = 433159b3361Sopenharmony_ci 434159b3361Sopenharmony_ci# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 435159b3361Sopenharmony_ci# is prepared for conversion to pdf (using ps2pdf). The pdf file will 436159b3361Sopenharmony_ci# contain links (just like the HTML output) instead of page references 437159b3361Sopenharmony_ci# This makes the output suitable for online browsing using a pdf viewer. 438159b3361Sopenharmony_ci 439159b3361Sopenharmony_ciPDF_HYPERLINKS = NO 440159b3361Sopenharmony_ci 441159b3361Sopenharmony_ci# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 442159b3361Sopenharmony_ci# plain latex in the generated Makefile. Set this option to YES to get a 443159b3361Sopenharmony_ci# higher quality PDF documentation. 444159b3361Sopenharmony_ci 445159b3361Sopenharmony_ciUSE_PDFLATEX = NO 446159b3361Sopenharmony_ci 447159b3361Sopenharmony_ci# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 448159b3361Sopenharmony_ci# command to the generated LaTeX files. This will instruct LaTeX to keep 449159b3361Sopenharmony_ci# running if errors occur, instead of asking the user for help. 450159b3361Sopenharmony_ci# This option is also used when generating formulas in HTML. 451159b3361Sopenharmony_ci 452159b3361Sopenharmony_ciLATEX_BATCHMODE = NO 453159b3361Sopenharmony_ci 454159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 455159b3361Sopenharmony_ci# configuration options related to the RTF output 456159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 457159b3361Sopenharmony_ci 458159b3361Sopenharmony_ci# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 459159b3361Sopenharmony_ci# The RTF output is optimised for Word 97 and may not look very pretty with 460159b3361Sopenharmony_ci# other RTF readers or editors. 461159b3361Sopenharmony_ci 462159b3361Sopenharmony_ciGENERATE_RTF = NO 463159b3361Sopenharmony_ci 464159b3361Sopenharmony_ci# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 465159b3361Sopenharmony_ci# If a relative path is entered the value of OUTPUT_DIRECTORY will be 466159b3361Sopenharmony_ci# put in front of it. If left blank `rtf' will be used as the default path. 467159b3361Sopenharmony_ci 468159b3361Sopenharmony_ciRTF_OUTPUT = rtf 469159b3361Sopenharmony_ci 470159b3361Sopenharmony_ci# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 471159b3361Sopenharmony_ci# RTF documents. This may be useful for small projects and may help to 472159b3361Sopenharmony_ci# save some trees in general. 473159b3361Sopenharmony_ci 474159b3361Sopenharmony_ciCOMPACT_RTF = NO 475159b3361Sopenharmony_ci 476159b3361Sopenharmony_ci# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 477159b3361Sopenharmony_ci# will contain hyperlink fields. The RTF file will 478159b3361Sopenharmony_ci# contain links (just like the HTML output) instead of page references. 479159b3361Sopenharmony_ci# This makes the output suitable for online browsing using a WORD or other. 480159b3361Sopenharmony_ci# programs which support those fields. 481159b3361Sopenharmony_ci# Note: wordpad (write) and others do not support links. 482159b3361Sopenharmony_ci 483159b3361Sopenharmony_ciRTF_HYPERLINKS = NO 484159b3361Sopenharmony_ci 485159b3361Sopenharmony_ci# Load stylesheet definitions from file. Syntax is similar to doxygen's 486159b3361Sopenharmony_ci# config file, i.e. a series of assigments. You only have to provide 487159b3361Sopenharmony_ci# replacements, missing definitions are set to their default value. 488159b3361Sopenharmony_ci 489159b3361Sopenharmony_ciRTF_STYLESHEET_FILE = 490159b3361Sopenharmony_ci 491159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 492159b3361Sopenharmony_ci# configuration options related to the man page output 493159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 494159b3361Sopenharmony_ci 495159b3361Sopenharmony_ci# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 496159b3361Sopenharmony_ci# generate man pages 497159b3361Sopenharmony_ci 498159b3361Sopenharmony_ciGENERATE_MAN = NO 499159b3361Sopenharmony_ci 500159b3361Sopenharmony_ci# The MAN_OUTPUT tag is used to specify where the man pages will be put. 501159b3361Sopenharmony_ci# If a relative path is entered the value of OUTPUT_DIRECTORY will be 502159b3361Sopenharmony_ci# put in front of it. If left blank `man' will be used as the default path. 503159b3361Sopenharmony_ci 504159b3361Sopenharmony_ciMAN_OUTPUT = man 505159b3361Sopenharmony_ci 506159b3361Sopenharmony_ci# The MAN_EXTENSION tag determines the extension that is added to 507159b3361Sopenharmony_ci# the generated man pages (default is the subroutine's section .3) 508159b3361Sopenharmony_ci 509159b3361Sopenharmony_ciMAN_EXTENSION = .3 510159b3361Sopenharmony_ci 511159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 512159b3361Sopenharmony_ci# configuration options related to the XML output 513159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 514159b3361Sopenharmony_ci 515159b3361Sopenharmony_ci# If the GENERATE_XML tag is set to YES Doxygen will 516159b3361Sopenharmony_ci# generate an XML file that captures the structure of 517159b3361Sopenharmony_ci# the code including all documentation. Warning: This feature 518159b3361Sopenharmony_ci# is still experimental and very incomplete. 519159b3361Sopenharmony_ci 520159b3361Sopenharmony_ciGENERATE_XML = NO 521159b3361Sopenharmony_ci 522159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 523159b3361Sopenharmony_ci# Configuration options related to the preprocessor 524159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 525159b3361Sopenharmony_ci 526159b3361Sopenharmony_ci# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 527159b3361Sopenharmony_ci# evaluate all C-preprocessor directives found in the sources and include 528159b3361Sopenharmony_ci# files. 529159b3361Sopenharmony_ci 530159b3361Sopenharmony_ciENABLE_PREPROCESSING = YES 531159b3361Sopenharmony_ci 532159b3361Sopenharmony_ci# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 533159b3361Sopenharmony_ci# names in the source code. If set to NO (the default) only conditional 534159b3361Sopenharmony_ci# compilation will be performed. Macro expansion can be done in a controlled 535159b3361Sopenharmony_ci# way by setting EXPAND_ONLY_PREDEF to YES. 536159b3361Sopenharmony_ci 537159b3361Sopenharmony_ciMACRO_EXPANSION = NO 538159b3361Sopenharmony_ci 539159b3361Sopenharmony_ci# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 540159b3361Sopenharmony_ci# then the macro expansion is limited to the macros specified with the 541159b3361Sopenharmony_ci# PREDEFINED and EXPAND_AS_PREDEFINED tags. 542159b3361Sopenharmony_ci 543159b3361Sopenharmony_ciEXPAND_ONLY_PREDEF = NO 544159b3361Sopenharmony_ci 545159b3361Sopenharmony_ci# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 546159b3361Sopenharmony_ci# in the INCLUDE_PATH (see below) will be search if a #include is found. 547159b3361Sopenharmony_ci 548159b3361Sopenharmony_ciSEARCH_INCLUDES = YES 549159b3361Sopenharmony_ci 550159b3361Sopenharmony_ci# The INCLUDE_PATH tag can be used to specify one or more directories that 551159b3361Sopenharmony_ci# contain include files that are not input files but should be processed by 552159b3361Sopenharmony_ci# the preprocessor. 553159b3361Sopenharmony_ci 554159b3361Sopenharmony_ciINCLUDE_PATH = 555159b3361Sopenharmony_ci 556159b3361Sopenharmony_ci# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 557159b3361Sopenharmony_ci# patterns (like *.h and *.hpp) to filter out the header-files in the 558159b3361Sopenharmony_ci# directories. If left blank, the patterns specified with FILE_PATTERNS will 559159b3361Sopenharmony_ci# be used. 560159b3361Sopenharmony_ci 561159b3361Sopenharmony_ciINCLUDE_FILE_PATTERNS = 562159b3361Sopenharmony_ci 563159b3361Sopenharmony_ci# The PREDEFINED tag can be used to specify one or more macro names that 564159b3361Sopenharmony_ci# are defined before the preprocessor is started (similar to the -D option of 565159b3361Sopenharmony_ci# gcc). The argument of the tag is a list of macros of the form: name 566159b3361Sopenharmony_ci# or name=definition (no spaces). If the definition and the = are 567159b3361Sopenharmony_ci# omitted =1 is assumed. 568159b3361Sopenharmony_ci 569159b3361Sopenharmony_ciPREDEFINED = 570159b3361Sopenharmony_ci 571159b3361Sopenharmony_ci# If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then 572159b3361Sopenharmony_ci# this tag can be used to specify a list of macro names that should be expanded. 573159b3361Sopenharmony_ci# The macro definition that is found in the sources will be used. 574159b3361Sopenharmony_ci# Use the PREDEFINED tag if you want to use a different macro definition. 575159b3361Sopenharmony_ci 576159b3361Sopenharmony_ciEXPAND_AS_DEFINED = 577159b3361Sopenharmony_ci 578159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 579159b3361Sopenharmony_ci# Configuration::addtions related to external references 580159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 581159b3361Sopenharmony_ci 582159b3361Sopenharmony_ci# The TAGFILES tag can be used to specify one or more tagfiles. 583159b3361Sopenharmony_ci 584159b3361Sopenharmony_ciTAGFILES = 585159b3361Sopenharmony_ci 586159b3361Sopenharmony_ci# When a file name is specified after GENERATE_TAGFILE, doxygen will create 587159b3361Sopenharmony_ci# a tag file that is based on the input files it reads. 588159b3361Sopenharmony_ci 589159b3361Sopenharmony_ciGENERATE_TAGFILE = 590159b3361Sopenharmony_ci 591159b3361Sopenharmony_ci# If the ALLEXTERNALS tag is set to YES all external classes will be listed 592159b3361Sopenharmony_ci# in the class index. If set to NO only the inherited external classes 593159b3361Sopenharmony_ci# will be listed. 594159b3361Sopenharmony_ci 595159b3361Sopenharmony_ciALLEXTERNALS = NO 596159b3361Sopenharmony_ci 597159b3361Sopenharmony_ci# The PERL_PATH should be the absolute path and name of the perl script 598159b3361Sopenharmony_ci# interpreter (i.e. the result of `which perl'). 599159b3361Sopenharmony_ci 600159b3361Sopenharmony_ciPERL_PATH = /usr/bin/perl 601159b3361Sopenharmony_ci 602159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 603159b3361Sopenharmony_ci# Configuration options related to the dot tool 604159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 605159b3361Sopenharmony_ci 606159b3361Sopenharmony_ci# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 607159b3361Sopenharmony_ci# available from the path. This tool is part of Graphviz, a graph visualization 608159b3361Sopenharmony_ci# toolkit from AT&T and Lucent Bell Labs. The other options in this section 609159b3361Sopenharmony_ci# have no effect if this option is set to NO (the default) 610159b3361Sopenharmony_ci 611159b3361Sopenharmony_ciHAVE_DOT = NO 612159b3361Sopenharmony_ci 613159b3361Sopenharmony_ci# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 614159b3361Sopenharmony_ci# will generate a graph for each documented class showing the direct and 615159b3361Sopenharmony_ci# indirect inheritance relations. Setting this tag to YES will force the 616159b3361Sopenharmony_ci# the CLASS_DIAGRAMS tag to NO. 617159b3361Sopenharmony_ci 618159b3361Sopenharmony_ciCLASS_GRAPH = YES 619159b3361Sopenharmony_ci 620159b3361Sopenharmony_ci# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 621159b3361Sopenharmony_ci# will generate a graph for each documented class showing the direct and 622159b3361Sopenharmony_ci# indirect implementation dependencies (inheritance, containment, and 623159b3361Sopenharmony_ci# class references variables) of the class with other documented classes. 624159b3361Sopenharmony_ci 625159b3361Sopenharmony_ciCOLLABORATION_GRAPH = YES 626159b3361Sopenharmony_ci 627159b3361Sopenharmony_ci# If the ENABLE_PREPROCESSING, INCLUDE_GRAPH, and HAVE_DOT tags are set to 628159b3361Sopenharmony_ci# YES then doxygen will generate a graph for each documented file showing 629159b3361Sopenharmony_ci# the direct and indirect include dependencies of the file with other 630159b3361Sopenharmony_ci# documented files. 631159b3361Sopenharmony_ci 632159b3361Sopenharmony_ciINCLUDE_GRAPH = YES 633159b3361Sopenharmony_ci 634159b3361Sopenharmony_ci# If the ENABLE_PREPROCESSING, INCLUDED_BY_GRAPH, and HAVE_DOT tags are set to 635159b3361Sopenharmony_ci# YES then doxygen will generate a graph for each documented header file showing 636159b3361Sopenharmony_ci# the documented files that directly or indirectly include this file 637159b3361Sopenharmony_ci 638159b3361Sopenharmony_ciINCLUDED_BY_GRAPH = YES 639159b3361Sopenharmony_ci 640159b3361Sopenharmony_ci# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 641159b3361Sopenharmony_ci# will graphical hierarchy of all classes instead of a textual one. 642159b3361Sopenharmony_ci 643159b3361Sopenharmony_ciGRAPHICAL_HIERARCHY = YES 644159b3361Sopenharmony_ci 645159b3361Sopenharmony_ci# The tag DOT_PATH can be used to specify the path where the dot tool can be 646159b3361Sopenharmony_ci# found. If left blank, it is assumed the dot tool can be found on the path. 647159b3361Sopenharmony_ci 648159b3361Sopenharmony_ciDOT_PATH = 649159b3361Sopenharmony_ci 650159b3361Sopenharmony_ci# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 651159b3361Sopenharmony_ci# (in pixels) of the graphs generated by dot. If a graph becomes larger than 652159b3361Sopenharmony_ci# this value, doxygen will try to truncate the graph, so that it fits within 653159b3361Sopenharmony_ci# the specified constraint. Beware that most browsers cannot cope with very 654159b3361Sopenharmony_ci# large images. 655159b3361Sopenharmony_ci 656159b3361Sopenharmony_ciMAX_DOT_GRAPH_WIDTH = 1024 657159b3361Sopenharmony_ci 658159b3361Sopenharmony_ci# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 659159b3361Sopenharmony_ci# (in pixels) of the graphs generated by dot. If a graph becomes larger than 660159b3361Sopenharmony_ci# this value, doxygen will try to truncate the graph, so that it fits within 661159b3361Sopenharmony_ci# the specified constraint. Beware that most browsers cannot cope with very 662159b3361Sopenharmony_ci# large images. 663159b3361Sopenharmony_ci 664159b3361Sopenharmony_ciMAX_DOT_GRAPH_HEIGHT = 1024 665159b3361Sopenharmony_ci 666159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 667159b3361Sopenharmony_ci# Configuration::addtions related to the search engine 668159b3361Sopenharmony_ci#--------------------------------------------------------------------------- 669159b3361Sopenharmony_ci 670159b3361Sopenharmony_ci# The SEARCHENGINE tag specifies whether or not a search engine should be 671159b3361Sopenharmony_ci# used. If set to NO the values of all tags below this one will be ignored. 672159b3361Sopenharmony_ci 673159b3361Sopenharmony_ciSEARCHENGINE = NO 674159b3361Sopenharmony_ci 675159b3361Sopenharmony_ci# The CGI_NAME tag should be the name of the CGI script that 676159b3361Sopenharmony_ci# starts the search engine (doxysearch) with the correct parameters. 677159b3361Sopenharmony_ci# A script with this name will be generated by doxygen. 678159b3361Sopenharmony_ci 679159b3361Sopenharmony_ciCGI_NAME = search.cgi 680159b3361Sopenharmony_ci 681159b3361Sopenharmony_ci# The CGI_URL tag should be the absolute URL to the directory where the 682159b3361Sopenharmony_ci# cgi binaries are located. See the documentation of your http daemon for 683159b3361Sopenharmony_ci# details. 684159b3361Sopenharmony_ci 685159b3361Sopenharmony_ciCGI_URL = 686159b3361Sopenharmony_ci 687159b3361Sopenharmony_ci# The DOC_URL tag should be the absolute URL to the directory where the 688159b3361Sopenharmony_ci# documentation is located. If left blank the absolute path to the 689159b3361Sopenharmony_ci# documentation, with file:// prepended to it, will be used. 690159b3361Sopenharmony_ci 691159b3361Sopenharmony_ciDOC_URL = 692159b3361Sopenharmony_ci 693159b3361Sopenharmony_ci# The DOC_ABSPATH tag should be the absolute path to the directory where the 694159b3361Sopenharmony_ci# documentation is located. If left blank the directory on the local machine 695159b3361Sopenharmony_ci# will be used. 696159b3361Sopenharmony_ci 697159b3361Sopenharmony_ciDOC_ABSPATH = 698159b3361Sopenharmony_ci 699159b3361Sopenharmony_ci# The BIN_ABSPATH tag must point to the directory where the doxysearch binary 700159b3361Sopenharmony_ci# is installed. 701159b3361Sopenharmony_ci 702159b3361Sopenharmony_ciBIN_ABSPATH = /usr/local/bin/ 703159b3361Sopenharmony_ci 704159b3361Sopenharmony_ci# The EXT_DOC_PATHS tag can be used to specify one or more paths to 705159b3361Sopenharmony_ci# documentation generated for other projects. This allows doxysearch to search 706159b3361Sopenharmony_ci# the documentation for these projects as well. 707159b3361Sopenharmony_ci 708159b3361Sopenharmony_ciEXT_DOC_PATHS = 709