| OLD | NEW |
| 1 # Doxyfile 1.8.9.1 | 1 # Doxyfile 1.8.9.1 |
| 2 | 2 |
| 3 # This file describes the settings to be used by the documentation system | 3 # This file describes the settings to be used by the documentation system |
| 4 # doxygen (www.doxygen.org) for a project. | 4 # doxygen (www.doxygen.org) for a project. |
| 5 # | 5 # |
| 6 # All text after a double hash (##) is considered a comment and is placed in | 6 # All text after a double hash (##) is considered a comment and is placed in |
| 7 # front of the TAG it is preceding. | 7 # front of the TAG it is preceding. |
| 8 # | 8 # |
| 9 # All text after a single hash (#) is considered a comment and will be ignored. | 9 # All text after a single hash (#) is considered a comment and will be ignored. |
| 10 # The format is: | 10 # The format is: |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy | 51 # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy |
| 52 # the logo to the output directory. | 52 # the logo to the output directory. |
| 53 | 53 |
| 54 PROJECT_LOGO = | 54 PROJECT_LOGO = |
| 55 | 55 |
| 56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path | 56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path |
| 57 # into which the generated documentation will be written. If a relative path is | 57 # into which the generated documentation will be written. If a relative path is |
| 58 # entered, it will be relative to the location where doxygen was started. If | 58 # entered, it will be relative to the location where doxygen was started. If |
| 59 # left blank the current directory will be used. | 59 # left blank the current directory will be used. |
| 60 | 60 |
| 61 OUTPUT_DIRECTORY = out | 61 OUTPUT_DIRECTORY = out/doc/doxygen |
| 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 # directories (in 2 levels) under the output directory of each output format and | 64 # directories (in 2 levels) under the output directory of each output format and |
| 65 # will distribute the generated files over these directories. Enabling this | 65 # will distribute the generated files over these directories. Enabling this |
| 66 # option can be useful when feeding doxygen a huge amount of source files, where | 66 # option can be useful when feeding doxygen a huge amount of source files, where |
| 67 # putting all generated files in the same directory would otherwise causes | 67 # putting all generated files in the same directory would otherwise causes |
| 68 # performance problems for the file system. | 68 # performance problems for the file system. |
| 69 # The default value is: NO. | 69 # The default value is: NO. |
| 70 | 70 |
| 71 CREATE_SUBDIRS = NO | 71 CREATE_SUBDIRS = NO |
| (...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 | 792 |
| 793 RECURSIVE = YES | 793 RECURSIVE = YES |
| 794 | 794 |
| 795 # The EXCLUDE tag can be used to specify files and/or directories that should be | 795 # The EXCLUDE tag can be used to specify files and/or directories that should be |
| 796 # excluded from the INPUT source files. This way you can easily exclude a | 796 # excluded from the INPUT source files. This way you can easily exclude a |
| 797 # subdirectory from a directory tree whose root is specified with the INPUT tag. | 797 # subdirectory from a directory tree whose root is specified with the INPUT tag. |
| 798 # | 798 # |
| 799 # Note that relative paths are relative to the directory from which doxygen is | 799 # Note that relative paths are relative to the directory from which doxygen is |
| 800 # run. | 800 # run. |
| 801 | 801 |
| 802 EXCLUDE = out \ | 802 EXCLUDE = third_party |
| 803 third_party | |
| 804 | 803 |
| 805 # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or | 804 # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or |
| 806 # directories that are symbolic links (a Unix file system feature) are excluded | 805 # directories that are symbolic links (a Unix file system feature) are excluded |
| 807 # from the input. | 806 # from the input. |
| 808 # The default value is: NO. | 807 # The default value is: NO. |
| 809 | 808 |
| 810 EXCLUDE_SYMLINKS = NO | 809 EXCLUDE_SYMLINKS = NO |
| 811 | 810 |
| 812 # If the value of the INPUT tag contains directories, you can use the | 811 # If the value of the INPUT tag contains directories, you can use the |
| 813 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude | 812 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude |
| 814 # certain files from those directories. | 813 # certain files from those directories. |
| 815 # | 814 # |
| 816 # Note that the wildcards are matched against the file with absolute path, so to | 815 # Note that the wildcards are matched against the file with absolute path, so to |
| 817 # exclude all test directories for example use the pattern */test/* | 816 # exclude all test directories for example use the pattern */test/* |
| 818 | 817 |
| 819 EXCLUDE_PATTERNS = | 818 EXCLUDE_PATTERNS = out* |
| 820 | 819 |
| 821 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names | 820 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names |
| 822 # (namespaces, classes, functions, etc.) that should be excluded from the | 821 # (namespaces, classes, functions, etc.) that should be excluded from the |
| 823 # output. The symbol name can be a fully qualified name, a word, or if the | 822 # output. The symbol name can be a fully qualified name, a word, or if the |
| 824 # wildcard * is used, a substring. Examples: ANamespace, AClass, | 823 # wildcard * is used, a substring. Examples: ANamespace, AClass, |
| 825 # AClass::ANamespace, ANamespace::*Test | 824 # AClass::ANamespace, ANamespace::*Test |
| 826 # | 825 # |
| 827 # Note that the wildcards are matched against the file with absolute path, so to | 826 # Note that the wildcards are matched against the file with absolute path, so to |
| 828 # exclude all test directories use the pattern */test/* | 827 # exclude all test directories use the pattern */test/* |
| 829 | 828 |
| (...skipping 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2361 # This tag requires that the tag HAVE_DOT is set to YES. | 2360 # This tag requires that the tag HAVE_DOT is set to YES. |
| 2362 | 2361 |
| 2363 GENERATE_LEGEND = YES | 2362 GENERATE_LEGEND = YES |
| 2364 | 2363 |
| 2365 # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot | 2364 # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot |
| 2366 # files that are used to generate the various graphs. | 2365 # files that are used to generate the various graphs. |
| 2367 # The default value is: YES. | 2366 # The default value is: YES. |
| 2368 # This tag requires that the tag HAVE_DOT is set to YES. | 2367 # This tag requires that the tag HAVE_DOT is set to YES. |
| 2369 | 2368 |
| 2370 DOT_CLEANUP = YES | 2369 DOT_CLEANUP = YES |
| OLD | NEW |