| OLD | NEW |
| 1 # Doxyfile 1.8.7 | 1 # Doxyfile 1.8.7 |
| 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 756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 767 | 767 |
| 768 # If the value of the INPUT tag contains directories, you can use the | 768 # If the value of the INPUT tag contains directories, you can use the |
| 769 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and | 769 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and |
| 770 # *.h) to filter out the source-files in the directories. If left blank the | 770 # *.h) to filter out the source-files in the directories. If left blank the |
| 771 # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, | 771 # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, |
| 772 # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, | 772 # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, |
| 773 # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, | 773 # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, |
| 774 # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, | 774 # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, |
| 775 # *.qsf, *.as and *.js. | 775 # *.qsf, *.as and *.js. |
| 776 | 776 |
| 777 FILE_PATTERNS = | 777 FILE_PATTERNS = *.c *.cc *.h *.m *.mm |
| 778 | 778 |
| 779 # The RECURSIVE tag can be used to specify whether or not subdirectories should | 779 # The RECURSIVE tag can be used to specify whether or not subdirectories should |
| 780 # be searched for input files as well. | 780 # be searched for input files as well. |
| 781 # The default value is: NO. | 781 # The default value is: NO. |
| 782 | 782 |
| 783 RECURSIVE = YES | 783 RECURSIVE = YES |
| 784 | 784 |
| 785 # The EXCLUDE tag can be used to specify files and/or directories that should be | 785 # The EXCLUDE tag can be used to specify files and/or directories that should be |
| 786 # excluded from the INPUT source files. This way you can easily exclude a | 786 # excluded from the INPUT source files. This way you can easily exclude a |
| 787 # subdirectory from a directory tree whose root is specified with the INPUT tag. | 787 # subdirectory from a directory tree whose root is specified with the INPUT tag. |
| (...skipping 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2303 # This tag requires that the tag HAVE_DOT is set to YES. | 2303 # This tag requires that the tag HAVE_DOT is set to YES. |
| 2304 | 2304 |
| 2305 GENERATE_LEGEND = YES | 2305 GENERATE_LEGEND = YES |
| 2306 | 2306 |
| 2307 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot | 2307 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot |
| 2308 # files that are used to generate the various graphs. | 2308 # files that are used to generate the various graphs. |
| 2309 # The default value is: YES. | 2309 # The default value is: YES. |
| 2310 # This tag requires that the tag HAVE_DOT is set to YES. | 2310 # This tag requires that the tag HAVE_DOT is set to YES. |
| 2311 | 2311 |
| 2312 DOT_CLEANUP = YES | 2312 DOT_CLEANUP = YES |
| OLD | NEW |