| OLD | NEW |
| 1 # Doxyfile 1.7.4 | 1 # Doxyfile 1.7.4 |
| 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 hash (#) is considered a comment and will be ignored. | 6 # All text after a hash (#) is considered a comment and will be ignored. |
| 7 # The format is: | 7 # The format is: |
| 8 # TAG = value [value, ...] | 8 # TAG = value [value, ...] |
| 9 # For lists items can also be appended using: | 9 # For lists items can also be appended using: |
| 10 # TAG += value [value, ...] | 10 # TAG += value [value, ...] |
| (...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank | 828 # each generated HTML page (for example: .htm,.php,.asp). If it is left blank |
| 829 # doxygen will generate files with .html extension. | 829 # doxygen will generate files with .html extension. |
| 830 | 830 |
| 831 HTML_FILE_EXTENSION = .html | 831 HTML_FILE_EXTENSION = .html |
| 832 | 832 |
| 833 # The HTML_HEADER tag can be used to specify a personal HTML header for | 833 # The HTML_HEADER tag can be used to specify a personal HTML header for |
| 834 # each generated HTML page. If it is left blank doxygen will generate a | 834 # each generated HTML page. If it is left blank doxygen will generate a |
| 835 # standard header. Note that when using a custom header you are responsible | 835 # standard header. Note that when using a custom header you are responsible |
| 836 # for the proper inclusion of any scripts and style sheets that doxygen | 836 # for the proper inclusion of any scripts and style sheets that doxygen |
| 837 # needs, which is dependent on the configuration options used. | 837 # needs, which is dependent on the configuration options used. |
| 838 # It is adviced to generate a default header using "doxygen -w html | 838 # It is advised to generate a default header using "doxygen -w html |
| 839 # header.html footer.html stylesheet.css YourConfigFile" and then modify | 839 # header.html footer.html stylesheet.css YourConfigFile" and then modify |
| 840 # that header. Note that the header is subject to change so you typically | 840 # that header. Note that the header is subject to change so you typically |
| 841 # have to redo this when upgrading to a newer version of doxygen or when changin
g the value of configuration settings such as GENERATE_TREEVIEW! | 841 # have to redo this when upgrading to a newer version of doxygen or when changin
g the value of configuration settings such as GENERATE_TREEVIEW! |
| 842 | 842 |
| 843 HTML_HEADER = @top_srcdir@/doc/header.html | 843 HTML_HEADER = @top_srcdir@/doc/header.html |
| 844 | 844 |
| 845 # The HTML_FOOTER tag can be used to specify a personal HTML footer for | 845 # The HTML_FOOTER tag can be used to specify a personal HTML footer for |
| 846 # each generated HTML page. If it is left blank doxygen will generate a | 846 # each generated HTML page. If it is left blank doxygen will generate a |
| 847 # standard footer. | 847 # standard footer. |
| 848 | 848 |
| (...skipping 866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1715 # generate a legend page explaining the meaning of the various boxes and | 1715 # generate a legend page explaining the meaning of the various boxes and |
| 1716 # arrows in the dot generated graphs. | 1716 # arrows in the dot generated graphs. |
| 1717 | 1717 |
| 1718 GENERATE_LEGEND = YES | 1718 GENERATE_LEGEND = YES |
| 1719 | 1719 |
| 1720 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will | 1720 # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will |
| 1721 # remove the intermediate dot files that are used to generate | 1721 # remove the intermediate dot files that are used to generate |
| 1722 # the various graphs. | 1722 # the various graphs. |
| 1723 | 1723 |
| 1724 DOT_CLEANUP = YES | 1724 DOT_CLEANUP = YES |
| OLD | NEW |