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