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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 #--------------------------------------------------------------------------- | 604 #--------------------------------------------------------------------------- |
605 # configuration options related to the input files | 605 # configuration options related to the input files |
606 #--------------------------------------------------------------------------- | 606 #--------------------------------------------------------------------------- |
607 | 607 |
608 # The INPUT tag can be used to specify the files and/or directories that contain | 608 # The INPUT tag can be used to specify the files and/or directories that contain |
609 # documented source files. You may enter file names like "myfile.cpp" or | 609 # documented source files. You may enter file names like "myfile.cpp" or |
610 # directories like "/usr/src/myproject". Separate the files or directories | 610 # directories like "/usr/src/myproject". Separate the files or directories |
611 # with spaces. | 611 # with spaces. |
612 | 612 |
613 INPUT = @top_srcdir@/include/opus.h \ | 613 INPUT = @top_srcdir@/include/opus.h \ |
614 » » » @top_srcdir@/include/opus_types.h \ | 614 @top_srcdir@/include/opus_types.h \ |
615 @top_srcdir@/include/opus_defines.h \ | 615 @top_srcdir@/include/opus_defines.h \ |
616 @top_srcdir@/include/opus_multistream.h \ | 616 @top_srcdir@/include/opus_multistream.h \ |
617 @top_srcdir@/include/opus_custom.h | 617 @top_srcdir@/include/opus_custom.h |
618 | 618 |
619 # This tag can be used to specify the character encoding of the source files | 619 # This tag can be used to specify the character encoding of the source files |
620 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is | 620 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is |
621 # also the default input encoding. Doxygen uses libiconv (or the iconv built | 621 # also the default input encoding. Doxygen uses libiconv (or the iconv built |
622 # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for | 622 # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for |
623 # the list of possible encodings. | 623 # the list of possible encodings. |
624 | 624 |
(...skipping 1090 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 |