Changeset a1cce65
- Timestamp:
- Jul 24, 2017, 1:56:54 PM (7 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
- Children:
- caf5fce, ddea34b
- Parents:
- 3c230fa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/web.cfg
r3c230fa ra1cce65 1 # Doxyfile 1.8. 81 # Doxyfile 1.8.13 2 2 3 3 # This file describes the settings to be used by the documentation system … … 47 47 PROJECT_BRIEF = 48 48 49 # With the PROJECT_LOGO tag one can specify a n logo or icon that is included in50 # the documentation. The maximum height of the logo should not exceed 55 pixels51 # and the maximum width should not exceed 200 pixels. Doxygen will copy the logo52 # t o the output directory.49 # With the PROJECT_LOGO tag one can specify a logo or an icon that is included 50 # in the documentation. The maximum height of the logo should not exceed 55 51 # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy 52 # the logo to the output directory. 53 53 54 54 PROJECT_LOGO = … … 61 61 OUTPUT_DIRECTORY = web 62 62 63 # If the CREATE_SUBDIRS tag is set to YES ,then doxygen will create 4096 sub-63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 64 64 # directories (in 2 levels) under the output directory of each output format and 65 65 # will distribute the generated files over these directories. Enabling this … … 94 94 OUTPUT_LANGUAGE = English 95 95 96 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member96 # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member 97 97 # descriptions after the members that are listed in the file and class 98 98 # documentation (similar to Javadoc). Set to NO to disable this. … … 101 101 BRIEF_MEMBER_DESC = YES 102 102 103 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief103 # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief 104 104 # description of a member or function before the detailed description 105 105 # … … 136 136 INLINE_INHERITED_MEMB = NO 137 137 138 # If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path138 # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path 139 139 # before files name in the file list and in the header files. If set to NO the 140 140 # shortest path that makes the file name unique will be used … … 206 206 INHERIT_DOCS = YES 207 207 208 # If the SEPARATE_MEMBER_PAGES tag is set to YES , then doxygen will produce a209 # new page for each member. If set to NO, the documentation of a member will be210 # partof the file/class/namespace that contains it.208 # If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new 209 # page for each member. If set to NO, the documentation of a member will be part 210 # of the file/class/namespace that contains it. 211 211 # The default value is: NO. 212 212 … … 277 277 # and .f files as C (default is Fortran), use: inc=Fortran f=C. 278 278 # 279 # Note For files without extension you can use no_extension as a placeholder.279 # Note: For files without extension you can use no_extension as a placeholder. 280 280 # 281 281 # Note that for custom extensions you also need to set FILE_PATTERNS otherwise … … 294 294 MARKDOWN_SUPPORT = YES 295 295 296 # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up 297 # to that level are automatically included in the table of contents, even if 298 # they do not have an id attribute. 299 # Note: This feature currently applies only to Markdown headings. 300 # Minimum value: 0, maximum value: 99, default value: 0. 301 # This tag requires that the tag MARKDOWN_SUPPORT is set to YES. 302 303 TOC_INCLUDE_HEADINGS = 0 304 296 305 # When enabled doxygen tries to link words that correspond to documented 297 306 # classes, or namespaces to their corresponding documentation. Such a link can 298 # be prevented in individual cases by by putting a % sign in front of the word299 # orglobally by setting AUTOLINK_SUPPORT to NO.307 # be prevented in individual cases by putting a % sign in front of the word or 308 # globally by setting AUTOLINK_SUPPORT to NO. 300 309 # The default value is: YES. 301 310 … … 337 346 338 347 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 339 # tag is set to YES ,then doxygen will reuse the documentation of the first348 # tag is set to YES then doxygen will reuse the documentation of the first 340 349 # member in the group (if any) for the other members of the group. By default 341 350 # all members of a group must be documented explicitly. … … 343 352 344 353 DISTRIBUTE_GROUP_DOC = NO 354 355 # If one adds a struct or class to a group and this option is enabled, then also 356 # any nested class or struct is added to the same group. By default this option 357 # is disabled and one has to add nested compounds explicitly via \ingroup. 358 # The default value is: NO. 359 360 GROUP_NESTED_COMPOUNDS = NO 345 361 346 362 # Set the SUBGROUPING tag to YES to allow class member groups of the same type … … 402 418 #--------------------------------------------------------------------------- 403 419 404 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in420 # If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in 405 421 # documentation are documented, even if no documentation was available. Private 406 422 # class members and static file members will be hidden unless the … … 412 428 EXTRACT_ALL = NO 413 429 414 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class will430 # If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will 415 431 # be included in the documentation. 416 432 # The default value is: NO. … … 418 434 EXTRACT_PRIVATE = NO 419 435 420 # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal436 # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal 421 437 # scope will be included in the documentation. 422 438 # The default value is: NO. … … 424 440 EXTRACT_PACKAGE = NO 425 441 426 # If the EXTRACT_STATIC tag is set to YES all static members of a file will be442 # If the EXTRACT_STATIC tag is set to YES, all static members of a file will be 427 443 # included in the documentation. 428 444 # The default value is: NO. … … 430 446 EXTRACT_STATIC = NO 431 447 432 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined433 # locally in source files will be included in the documentation. If set to NO 448 # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined 449 # locally in source files will be included in the documentation. If set to NO, 434 450 # only classes defined in header files are included. Does not have any effect 435 451 # for Java sources. … … 438 454 EXTRACT_LOCAL_CLASSES = YES 439 455 440 # This flag is only useful for Objective-C code. When set to YESlocal methods,456 # This flag is only useful for Objective-C code. If set to YES, local methods, 441 457 # which are defined in the implementation section but not in the interface are 442 # included in the documentation. If set to NO only methods in the interface are458 # included in the documentation. If set to NO, only methods in the interface are 443 459 # included. 444 460 # The default value is: NO. … … 465 481 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all 466 482 # undocumented classes that are normally visible in the class hierarchy. If set 467 # to NO these classes will be included in the various overviews. This option has468 # no effect if EXTRACT_ALL is enabled.483 # to NO, these classes will be included in the various overviews. This option 484 # has no effect if EXTRACT_ALL is enabled. 469 485 # The default value is: NO. 470 486 … … 472 488 473 489 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend 474 # (class|struct|union) declarations. If set to NO these declarations will be490 # (class|struct|union) declarations. If set to NO, these declarations will be 475 491 # included in the documentation. 476 492 # The default value is: NO. … … 479 495 480 496 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any 481 # documentation blocks found inside the body of a function. If set to NO these497 # documentation blocks found inside the body of a function. If set to NO, these 482 498 # blocks will be appended to the function's detailed documentation block. 483 499 # The default value is: NO. … … 493 509 494 510 # If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file 495 # names in lower-case letters. If set to YES upper-case letters are also511 # names in lower-case letters. If set to YES, upper-case letters are also 496 512 # allowed. This is useful if you have classes or files whose names only differ 497 513 # in case and if your file system supports case sensitive file names. Windows … … 502 518 503 519 # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with 504 # their full class and namespace scopes in the documentation. If set to YES the520 # their full class and namespace scopes in the documentation. If set to YES, the 505 521 # scope will be hidden. 506 522 # The default value is: NO. 507 523 508 524 HIDE_SCOPE_NAMES = NO 525 526 # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will 527 # append additional text to a page's title, such as Class Reference. If set to 528 # YES the compound reference will be hidden. 529 # The default value is: NO. 530 531 HIDE_COMPOUND_REFERENCE= NO 509 532 510 533 # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of … … 535 558 # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the 536 559 # (detailed) documentation of file and class members alphabetically by member 537 # name. If set to NO the members will appear in declaration order.560 # name. If set to NO, the members will appear in declaration order. 538 561 # The default value is: YES. 539 562 … … 542 565 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief 543 566 # descriptions of file, namespace and class members alphabetically by member 544 # name. If set to NO the members will appear in declaration order. Note that567 # name. If set to NO, the members will appear in declaration order. Note that 545 568 # this will also influence the order of the classes in the class list. 546 569 # The default value is: NO. … … 587 610 STRICT_PROTO_MATCHING = NO 588 611 589 # The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the 590 # todo list. This list is created by putting \todo commands in the 591 # documentation. 612 # The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo 613 # list. This list is created by putting \todo commands in the documentation. 592 614 # The default value is: YES. 593 615 594 616 GENERATE_TODOLIST = YES 595 617 596 # The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the 597 # test list. This list is created by putting \test commands in the 598 # documentation. 618 # The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test 619 # list. This list is created by putting \test commands in the documentation. 599 620 # The default value is: YES. 600 621 601 622 GENERATE_TESTLIST = YES 602 623 603 # The GENERATE_BUGLIST tag can be used to enable ( YES) or disable (NO) the bug624 # The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug 604 625 # list. This list is created by putting \bug commands in the documentation. 605 626 # The default value is: YES. … … 607 628 GENERATE_BUGLIST = YES 608 629 609 # The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable (NO)630 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) 610 631 # the deprecated list. This list is created by putting \deprecated commands in 611 632 # the documentation. … … 632 653 633 654 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at 634 # the bottom of the documentation of classes and structs. If set to YES the list635 # will mention the files that were used to generate the documentation.655 # the bottom of the documentation of classes and structs. If set to YES, the 656 # list will mention the files that were used to generate the documentation. 636 657 # The default value is: YES. 637 658 … … 697 718 698 719 # The WARNINGS tag can be used to turn on/off the warning messages that are 699 # generated to standard error ( 720 # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES 700 721 # this implies that the warnings are on. 701 722 # … … 705 726 WARNINGS = YES 706 727 707 # If the WARN_IF_UNDOCUMENTED tag is set to YES ,then doxygen will generate728 # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate 708 729 # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag 709 730 # will automatically be disabled. … … 722 743 # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that 723 744 # are documented, but have no documentation for their parameters or return 724 # value. If set to NO doxygen will only warn about wrong or incomplete parameter725 # documentation, but not about the absence of documentation.745 # value. If set to NO, doxygen will only warn about wrong or incomplete 746 # parameter documentation, but not about the absence of documentation. 726 747 # The default value is: NO. 727 748 728 749 WARN_NO_PARAMDOC = NO 750 751 # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when 752 # a warning is encountered. 753 # The default value is: NO. 754 755 WARN_AS_ERROR = NO 729 756 730 757 # The WARN_FORMAT tag determines the format of the warning messages that doxygen … … 751 778 # documented source files. You may enter file names like myfile.cpp or 752 779 # directories like /usr/src/myproject. Separate the files or directories with 753 # spaces. 780 # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING 754 781 # Note: If this tag is empty the current directory is searched. 755 782 … … 767 794 # If the value of the INPUT tag contains directories, you can use the 768 795 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and 769 # *.h) to filter out the source-files in the directories. If left blank the 770 # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, 771 # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, 772 # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, 773 # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, 774 # *.qsf, *.as and *.js. 796 # *.h) to filter out the source-files in the directories. 797 # 798 # Note that for custom extensions or not directly supported extensions you also 799 # need to set EXTENSION_MAPPING for the extension otherwise the files are not 800 # read by doxygen. 801 # 802 # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, 803 # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, 804 # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, 805 # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, 806 # *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf. 775 807 776 808 FILE_PATTERNS = *.h … … 880 912 # code is scanned, but not when the output code is generated. If lines are added 881 913 # or removed, the anchors will not be placed correctly. 914 # 915 # Note that for custom extensions or not directly supported extensions you also 916 # need to set EXTENSION_MAPPING for the extension otherwise the files are not 917 # properly processed by doxygen. 882 918 883 919 INPUT_FILTER = … … 889 925 # filters are used. If the FILTER_PATTERNS tag is empty or if none of the 890 926 # patterns match the file name, INPUT_FILTER is applied. 927 # 928 # Note that for custom extensions or not directly supported extensions you also 929 # need to set EXTENSION_MAPPING for the extension otherwise the files are not 930 # properly processed by doxygen. 891 931 892 932 FILTER_PATTERNS = 893 933 894 934 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 895 # INPUT_FILTER 935 # INPUT_FILTER) will also be used to filter the input files that are used for 896 936 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). 897 937 # The default value is: NO. … … 953 993 954 994 # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set 955 # to YES ,then the hyperlinks from functions in REFERENCES_RELATION and995 # to YES then the hyperlinks from functions in REFERENCES_RELATION and 956 996 # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will 957 997 # link to the documentation. … … 1000 1040 VERBATIM_HEADERS = YES 1001 1041 1002 # If the CLANG_ASSISTED_PARSING tag is set to YES ,then doxygen will use the1042 # If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the 1003 1043 # clang parser (see: http://clang.llvm.org/) for more accurate parsing at the 1004 1044 # cost of reduced performance. This can be particularly helpful with template … … 1006 1046 # information. 1007 1047 # Note: The availability of this option depends on whether or not doxygen was 1008 # compiled with the --with-libclang option.1048 # generated with the -Duse-libclang=ON option for CMake. 1009 1049 # The default value is: NO. 1010 1050 … … 1049 1089 #--------------------------------------------------------------------------- 1050 1090 1051 # If the GENERATE_HTML tag is set to YES doxygen will generate HTML output1091 # If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output 1052 1092 # The default value is: YES. 1053 1093 … … 1115 1155 # created by doxygen. Using this option one can overrule certain style aspects. 1116 1156 # This is preferred over using HTML_STYLESHEET since it does not replace the 1117 # standard style sheet and is therefor more robust against future updates.1157 # standard style sheet and is therefore more robust against future updates. 1118 1158 # Doxygen will copy the style sheet files to the output directory. 1119 # Note: The order of the extra style sheet files is of importance (e.g. the last1120 # style sheet in the list overrules the setting of the previous ones in the1159 # Note: The order of the extra style sheet files is of importance (e.g. the last 1160 # style sheet in the list overrules the setting of the previous ones in the 1121 1161 # list). For an example see the documentation. 1122 1162 # This tag requires that the tag GENERATE_HTML is set to YES. … … 1135 1175 1136 1176 # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen 1137 # will adjust the colors in the style sheet and background images according to1177 # will adjust the colors in the style sheet and background images according to 1138 1178 # this color. Hue is specified as an angle on a colorwheel, see 1139 1179 # http://en.wikipedia.org/wiki/Hue for more information. For instance the value … … 1166 1206 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML 1167 1207 # page will contain the date and time when the page was generated. Setting this 1168 # to NO can help when comparing the output of multiple runs. 1169 # The default value is: YES. 1208 # to YES can help to show when doxygen was last run and thus if the 1209 # documentation is up to date. 1210 # The default value is: NO. 1170 1211 # This tag requires that the tag GENERATE_HTML is set to YES. 1171 1212 … … 1263 1304 1264 1305 # The HHC_LOCATION tag can be used to specify the location (absolute path 1265 # including file name) of the HTML help compiler ( hhc.exe). If non-empty1306 # including file name) of the HTML help compiler (hhc.exe). If non-empty, 1266 1307 # doxygen will try to run the HTML help compiler on the generated index.hhp. 1267 1308 # The file has to be specified with full path. … … 1270 1311 HHC_LOCATION = 1271 1312 1272 # The GENERATE_CHI flag controls if a separate .chi index file is generated (1273 # YES) or that it should be included in the master .chm file (NO).1313 # The GENERATE_CHI flag controls if a separate .chi index file is generated 1314 # (YES) or that it should be included in the master .chm file (NO). 1274 1315 # The default value is: NO. 1275 1316 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. … … 1277 1318 GENERATE_CHI = NO 1278 1319 1279 # The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content (hhc)1320 # The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) 1280 1321 # and project file content. 1281 1322 # This tag requires that the tag GENERATE_HTMLHELP is set to YES. … … 1283 1324 CHM_INDEX_ENCODING = 1284 1325 1285 # The BINARY_TOC flag controls whether a binary table of contents is generated (1286 # YES) or a normal table of contents (NO) in the .chm file. Furthermore it1326 # The BINARY_TOC flag controls whether a binary table of contents is generated 1327 # (YES) or a normal table of contents (NO) in the .chm file. Furthermore it 1287 1328 # enables the Previous and Next buttons. 1288 1329 # The default value is: NO. … … 1398 1439 # to work a browser that supports JavaScript, DHTML, CSS and frames is required 1399 1440 # (i.e. any modern browser). Windows users are probably better off using the 1400 # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can1441 # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can 1401 1442 # further fine-tune the look of the index. As an example, the default style 1402 1443 # sheet generated by doxygen has an example that shows how to put an image at … … 1426 1467 TREEVIEW_WIDTH = 250 1427 1468 1428 # When the EXT_LINKS_IN_WINDOW option is set to YESdoxygen will open links to1469 # If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to 1429 1470 # external symbols imported via tag files in a separate window. 1430 1471 # The default value is: NO. … … 1455 1496 # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see 1456 1497 # http://www.mathjax.org) which uses client side Javascript for the rendering 1457 # instead of using pre rendered bitmaps. Use this if you do not have LaTeX1498 # instead of using pre-rendered bitmaps. Use this if you do not have LaTeX 1458 1499 # installed or if you want to formulas look prettier in the HTML output. When 1459 1500 # enabled you may also need to install MathJax separately and configure the path … … 1541 1582 # search results. 1542 1583 # 1543 # Doxygen ships with an example indexer ( 1584 # Doxygen ships with an example indexer (doxyindexer) and search engine 1544 1585 # (doxysearch.cgi) which are based on the open source search engine library 1545 1586 # Xapian (see: http://xapian.org/). … … 1554 1595 # which will return the search results when EXTERNAL_SEARCH is enabled. 1555 1596 # 1556 # Doxygen ships with an example indexer ( 1597 # Doxygen ships with an example indexer (doxyindexer) and search engine 1557 1598 # (doxysearch.cgi) which are based on the open source search engine library 1558 1599 # Xapian (see: http://xapian.org/). See the section "External Indexing and … … 1592 1633 #--------------------------------------------------------------------------- 1593 1634 1594 # If the GENERATE_LATEX tag is set to YES doxygen will generate LaTeX output.1635 # If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. 1595 1636 # The default value is: YES. 1596 1637 … … 1623 1664 MAKEINDEX_CMD_NAME = makeindex 1624 1665 1625 # If the COMPACT_LATEX tag is set to YES doxygen generates more compact LaTeX1666 # If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX 1626 1667 # documents. This may be useful for small projects and may help to save some 1627 1668 # trees in general. … … 1641 1682 1642 1683 # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names 1643 # that should be included in the LaTeX output. To get the times font for 1644 # instance you can specify 1645 # EXTRA_PACKAGES=times 1684 # that should be included in the LaTeX output. The package can be specified just 1685 # by its name or with the correct syntax as to be used with the LaTeX 1686 # \usepackage command. To get the times font for instance you can specify : 1687 # EXTRA_PACKAGES=times or EXTRA_PACKAGES={times} 1688 # To use the option intlimits with the amsmath package you can specify: 1689 # EXTRA_PACKAGES=[intlimits]{amsmath} 1646 1690 # If left blank no extra packages will be included. 1647 1691 # This tag requires that the tag GENERATE_LATEX is set to YES. … … 1658 1702 # following commands have a special meaning inside the header: $title, 1659 1703 # $datetime, $date, $doxygenversion, $projectname, $projectnumber, 1660 # $projectbrief, $projectlogo. Doxygen will replace $title with the emp y string,1661 # for the replacement values of the other commands the user is refered to1662 # HTML_HEADER.1704 # $projectbrief, $projectlogo. Doxygen will replace $title with the empty 1705 # string, for the replacement values of the other commands the user is referred 1706 # to HTML_HEADER. 1663 1707 # This tag requires that the tag GENERATE_LATEX is set to YES. 1664 1708 … … 1676 1720 LATEX_FOOTER = 1677 1721 1722 # The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined 1723 # LaTeX style sheets that are included after the standard style sheets created 1724 # by doxygen. Using this option one can overrule certain style aspects. Doxygen 1725 # will copy the style sheet files to the output directory. 1726 # Note: The order of the extra style sheet files is of importance (e.g. the last 1727 # style sheet in the list overrules the setting of the previous ones in the 1728 # list). 1729 # This tag requires that the tag GENERATE_LATEX is set to YES. 1730 1731 LATEX_EXTRA_STYLESHEET = 1732 1678 1733 # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or 1679 1734 # other source files which should be copied to the LATEX_OUTPUT output … … 1694 1749 1695 1750 # If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate 1696 # the PDF file directly from the LaTeX files. Set this option to YES to get a1751 # the PDF file directly from the LaTeX files. Set this option to YES, to get a 1697 1752 # higher quality PDF documentation. 1698 1753 # The default value is: YES. … … 1735 1790 LATEX_BIB_STYLE = plain 1736 1791 1792 # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated 1793 # page will contain the date and time when the page was generated. Setting this 1794 # to NO can help when comparing the output of multiple runs. 1795 # The default value is: NO. 1796 # This tag requires that the tag GENERATE_LATEX is set to YES. 1797 1798 LATEX_TIMESTAMP = NO 1799 1737 1800 #--------------------------------------------------------------------------- 1738 1801 # Configuration options related to the RTF output 1739 1802 #--------------------------------------------------------------------------- 1740 1803 1741 # If the GENERATE_RTF tag is set to YES doxygen will generate RTF output. The1804 # If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The 1742 1805 # RTF output is optimized for Word 97 and may not look too pretty with other RTF 1743 1806 # readers/editors. … … 1754 1817 RTF_OUTPUT = rtf 1755 1818 1756 # If the COMPACT_RTF tag is set to YES doxygen generates more compact RTF1819 # If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF 1757 1820 # documents. This may be useful for small projects and may help to save some 1758 1821 # trees in general. … … 1791 1854 RTF_EXTENSIONS_FILE = 1792 1855 1856 # If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code 1857 # with syntax highlighting in the RTF output. 1858 # 1859 # Note that which sources are shown also depends on other settings such as 1860 # SOURCE_BROWSER. 1861 # The default value is: NO. 1862 # This tag requires that the tag GENERATE_RTF is set to YES. 1863 1864 RTF_SOURCE_CODE = NO 1865 1793 1866 #--------------------------------------------------------------------------- 1794 1867 # Configuration options related to the man page output 1795 1868 #--------------------------------------------------------------------------- 1796 1869 1797 # If the GENERATE_MAN tag is set to YES doxygen will generate man pages for1870 # If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for 1798 1871 # classes and files. 1799 1872 # The default value is: NO. … … 1839 1912 #--------------------------------------------------------------------------- 1840 1913 1841 # If the GENERATE_XML tag is set to YES doxygen will generate an XML file that1914 # If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that 1842 1915 # captures the structure of the code including all documentation. 1843 1916 # The default value is: NO. … … 1853 1926 XML_OUTPUT = xml 1854 1927 1855 # If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program1928 # If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program 1856 1929 # listings (including syntax highlighting and cross-referencing information) to 1857 1930 # the XML output. Note that enabling this will significantly increase the size … … 1866 1939 #--------------------------------------------------------------------------- 1867 1940 1868 # If the GENERATE_DOCBOOK tag is set to YES doxygen will generate Docbook files1941 # If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files 1869 1942 # that can be used to generate PDF. 1870 1943 # The default value is: NO. … … 1880 1953 DOCBOOK_OUTPUT = docbook 1881 1954 1882 # If the DOCBOOK_PROGRAMLISTING tag is set to YES doxygen will include the1955 # If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the 1883 1956 # program listings (including syntax highlighting and cross-referencing 1884 1957 # information) to the DOCBOOK output. Note that enabling this will significantly … … 1893 1966 #--------------------------------------------------------------------------- 1894 1967 1895 # If the GENERATE_AUTOGEN_DEF tag is set to YES doxygen will generate an AutoGen1896 # Definitions (see http://autogen.sf.net) file that captures the structure of1897 # the code including all documentation. Note that this feature is still1898 # experimental and incomplete at the moment.1968 # If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an 1969 # AutoGen Definitions (see http://autogen.sf.net) file that captures the 1970 # structure of the code including all documentation. Note that this feature is 1971 # still experimental and incomplete at the moment. 1899 1972 # The default value is: NO. 1900 1973 … … 1905 1978 #--------------------------------------------------------------------------- 1906 1979 1907 # If the GENERATE_PERLMOD tag is set to YES doxygen will generate a Perl module1980 # If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module 1908 1981 # file that captures the structure of the code including all documentation. 1909 1982 # … … 1913 1986 GENERATE_PERLMOD = NO 1914 1987 1915 # If the PERLMOD_LATEX tag is set to YES doxygen will generate the necessary1988 # If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary 1916 1989 # Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI 1917 1990 # output from the Perl module output. … … 1921 1994 PERLMOD_LATEX = NO 1922 1995 1923 # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be nicely1996 # If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely 1924 1997 # formatted so it can be parsed by a human reader. This is useful if you want to 1925 # understand what is going on. On the other hand, if this tag is set to NO the1998 # understand what is going on. On the other hand, if this tag is set to NO, the 1926 1999 # size of the Perl module output will be much smaller and Perl will parse it 1927 2000 # just the same. … … 1943 2016 #--------------------------------------------------------------------------- 1944 2017 1945 # If the ENABLE_PREPROCESSING tag is set to YES doxygen will evaluate all2018 # If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all 1946 2019 # C-preprocessor directives found in the sources and include files. 1947 2020 # The default value is: YES. … … 1949 2022 ENABLE_PREPROCESSING = YES 1950 2023 1951 # If the MACRO_EXPANSION tag is set to YES doxygen will expand all macro names1952 # in the source code. If set to NO only conditional compilation will be2024 # If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names 2025 # in the source code. If set to NO, only conditional compilation will be 1953 2026 # performed. Macro expansion can be done in a controlled way by setting 1954 2027 # EXPAND_ONLY_PREDEF to YES. … … 1966 2039 EXPAND_ONLY_PREDEF = NO 1967 2040 1968 # If the SEARCH_INCLUDES tag is set to YES the includesfiles in the2041 # If the SEARCH_INCLUDES tag is set to YES, the include files in the 1969 2042 # INCLUDE_PATH will be searched if a #include is found. 1970 2043 # The default value is: YES. … … 2042 2115 GENERATE_TAGFILE = 2043 2116 2044 # If the ALLEXTERNALS tag is set to YES all external class will be listed in the 2045 # class index. If set to NO only the inherited external classes will be listed. 2117 # If the ALLEXTERNALS tag is set to YES, all external class will be listed in 2118 # the class index. If set to NO, only the inherited external classes will be 2119 # listed. 2046 2120 # The default value is: NO. 2047 2121 2048 2122 ALLEXTERNALS = NO 2049 2123 2050 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed in2051 # the modules index. If set to NO, only the current project's groups will be2124 # If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed 2125 # in the modules index. If set to NO, only the current project's groups will be 2052 2126 # listed. 2053 2127 # The default value is: YES. … … 2055 2129 EXTERNAL_GROUPS = YES 2056 2130 2057 # If the EXTERNAL_PAGES tag is set to YES all external pages will be listed in2131 # If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in 2058 2132 # the related pages index. If set to NO, only the current project's pages will 2059 2133 # be listed. … … 2072 2146 #--------------------------------------------------------------------------- 2073 2147 2074 # If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram2148 # If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram 2075 2149 # (in HTML and LaTeX) for classes with base or super classes. Setting the tag to 2076 2150 # NO turns the diagrams off. Note that this option also works with HAVE_DOT … … 2097 2171 DIA_PATH = 2098 2172 2099 # If set to YES ,the inheritance and collaboration graphs will hide inheritance2173 # If set to YES the inheritance and collaboration graphs will hide inheritance 2100 2174 # and usage relations if the target is undocumented or is not a class. 2101 2175 # The default value is: YES. … … 2170 2244 GROUP_GRAPHS = YES 2171 2245 2172 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and2246 # If the UML_LOOK tag is set to YES, doxygen will generate inheritance and 2173 2247 # collaboration diagrams in a style similar to the OMG's Unified Modeling 2174 2248 # Language. … … 2222 2296 # Note that enabling this option will significantly increase the time of a run. 2223 2297 # So in most cases it will be better to enable call graphs for selected 2224 # functions only using the \callgraph command. 2298 # functions only using the \callgraph command. Disabling a call graph can be 2299 # accomplished by means of the command \hidecallgraph. 2225 2300 # The default value is: NO. 2226 2301 # This tag requires that the tag HAVE_DOT is set to YES. … … 2233 2308 # Note that enabling this option will significantly increase the time of a run. 2234 2309 # So in most cases it will be better to enable caller graphs for selected 2235 # functions only using the \callergraph command. 2310 # functions only using the \callergraph command. Disabling a caller graph can be 2311 # accomplished by means of the command \hidecallergraph. 2236 2312 # The default value is: NO. 2237 2313 # This tag requires that the tag HAVE_DOT is set to YES. … … 2256 2332 2257 2333 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 2258 # generated by dot. 2334 # generated by dot. For an explanation of the image formats see the section 2335 # output formats in the documentation of the dot tool (Graphviz (see: 2336 # http://www.graphviz.org/)). 2259 2337 # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order 2260 2338 # to make the SVG files visible in IE 9+ (other browsers do not have this … … 2262 2340 # Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, 2263 2341 # png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, 2264 # gif:cairo:gd, gif:gd, gif:gd:gd and svg. 2342 # gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo, 2343 # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and 2344 # png:gdiplus:gdiplus. 2265 2345 # The default value is: png. 2266 2346 # This tag requires that the tag HAVE_DOT is set to YES. … … 2310 2390 # generate a warning when it encounters a \startuml command in this case and 2311 2391 # will not generate output for the diagram. 2312 # This tag requires that the tag HAVE_DOT is set to YES.2313 2392 2314 2393 PLANTUML_JAR_PATH = 2394 2395 # When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a 2396 # configuration file for plantuml. 2397 2398 PLANTUML_CFG_FILE = 2399 2400 # When using plantuml, the specified paths are searched for files specified by 2401 # the !include statement in a plantuml block. 2402 2403 PLANTUML_INCLUDE_PATH = 2315 2404 2316 2405 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes … … 2350 2439 DOT_TRANSPARENT = NO 2351 2440 2352 # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output2441 # Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output 2353 2442 # files in one run (i.e. multiple -o and -T options on the command line). This 2354 2443 # makes dot run faster, but since only newer versions of dot (>1.8.10) support … … 2367 2456 GENERATE_LEGEND = YES 2368 2457 2369 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot2458 # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot 2370 2459 # files that are used to generate the various graphs. 2371 2460 # The default value is: YES.
Note: See TracChangeset
for help on using the changeset viewer.