| OLD | NEW |
| 1 # Doxyfile 1.8.6 | 1 # Doxyfile 1.8.6 |
| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 AUTOLINK_SUPPORT = YES | 291 AUTOLINK_SUPPORT = YES |
| 292 | 292 |
| 293 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want | 293 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want |
| 294 # to include (a tag file for) the STL sources as input, then you should set this | 294 # to include (a tag file for) the STL sources as input, then you should set this |
| 295 # tag to YES in order to let doxygen match functions declarations and | 295 # tag to YES in order to let doxygen match functions declarations and |
| 296 # definitions whose arguments contain STL classes (e.g. func(std::string); | 296 # definitions whose arguments contain STL classes (e.g. func(std::string); |
| 297 # versus func(std::string) {}). This also make the inheritance and collaboration | 297 # versus func(std::string) {}). This also make the inheritance and collaboration |
| 298 # diagrams that involve STL classes more complete and accurate. | 298 # diagrams that involve STL classes more complete and accurate. |
| 299 # The default value is: NO. | 299 # The default value is: NO. |
| 300 | 300 |
| 301 BUILTIN_STL_SUPPORT = NO | 301 BUILTIN_STL_SUPPORT = YES |
| 302 | 302 |
| 303 # If you use Microsoft's C++/CLI language, you should set this option to YES to | 303 # If you use Microsoft's C++/CLI language, you should set this option to YES to |
| 304 # enable parsing support. | 304 # enable parsing support. |
| 305 # The default value is: NO. | 305 # The default value is: NO. |
| 306 | 306 |
| 307 CPP_CLI_SUPPORT = NO | 307 CPP_CLI_SUPPORT = NO |
| 308 | 308 |
| 309 # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: | 309 # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: |
| 310 # http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen | 310 # http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen |
| 311 # will parse them like normal C++ but will assume all classes use public instead | 311 # will parse them like normal C++ but will assume all classes use public instead |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 #--------------------------------------------------------------------------- | 736 #--------------------------------------------------------------------------- |
| 737 # Configuration options related to the input files | 737 # Configuration options related to the input files |
| 738 #--------------------------------------------------------------------------- | 738 #--------------------------------------------------------------------------- |
| 739 | 739 |
| 740 # The INPUT tag is used to specify the files and/or directories that contain | 740 # The INPUT tag is used to specify the files and/or directories that contain |
| 741 # documented source files. You may enter file names like myfile.cpp or | 741 # documented source files. You may enter file names like myfile.cpp or |
| 742 # directories like /usr/src/myproject. Separate the files or directories with | 742 # directories like /usr/src/myproject. Separate the files or directories with |
| 743 # spaces. | 743 # spaces. |
| 744 # Note: If this tag is empty the current directory is searched. | 744 # Note: If this tag is empty the current directory is searched. |
| 745 | 745 |
| 746 INPUT = "src" | 746 INPUT = "src" \ |
| 747 "../llvm/include/llvm/ADT" \ |
| 748 "../llvm/include/llvm/Bitcode" \ |
| 749 "../llvm/include/llvm/Config" \ |
| 750 "../llvm/include/llvm/IR" \ |
| 751 "../llvm/include/llvm/IRReader" \ |
| 752 "../llvm/include/llvm/Support" |
| 747 | 753 |
| 748 # This tag can be used to specify the character encoding of the source files | 754 # This tag can be used to specify the character encoding of the source files |
| 749 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses | 755 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses |
| 750 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv | 756 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv |
| 751 # documentation (see: http://www.gnu.org/software/libiconv) for the list of | 757 # documentation (see: http://www.gnu.org/software/libiconv) for the list of |
| 752 # possible encodings. | 758 # possible encodings. |
| 753 # The default value is: UTF-8. | 759 # The default value is: UTF-8. |
| 754 | 760 |
| 755 INPUT_ENCODING = UTF-8 | 761 INPUT_ENCODING = UTF-8 |
| 756 | 762 |
| 757 # If the value of the INPUT tag contains directories, you can use the | 763 # If the value of the INPUT tag contains directories, you can use the |
| 758 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and | 764 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and |
| 759 # *.h) to filter out the source-files in the directories. If left blank the | 765 # *.h) to filter out the source-files in the directories. If left blank the |
| 760 # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, | 766 # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, |
| 761 # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, | 767 # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, |
| 762 # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, | 768 # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, |
| 763 # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, | 769 # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, |
| 764 # *.qsf, *.as and *.js. | 770 # *.qsf, *.as and *.js. |
| 765 | 771 |
| 766 FILE_PATTERNS = | 772 FILE_PATTERNS = |
| 767 | 773 |
| 768 # The RECURSIVE tag can be used to specify whether or not subdirectories should | 774 # The RECURSIVE tag can be used to specify whether or not subdirectories should |
| 769 # be searched for input files as well. | 775 # be searched for input files as well. |
| 770 # The default value is: NO. | 776 # The default value is: NO. |
| 771 | 777 |
| 772 RECURSIVE = NO | 778 RECURSIVE = YES |
| 773 | 779 |
| 774 # The EXCLUDE tag can be used to specify files and/or directories that should be | 780 # The EXCLUDE tag can be used to specify files and/or directories that should be |
| 775 # excluded from the INPUT source files. This way you can easily exclude a | 781 # excluded from the INPUT source files. This way you can easily exclude a |
| 776 # subdirectory from a directory tree whose root is specified with the INPUT tag. | 782 # subdirectory from a directory tree whose root is specified with the INPUT tag. |
| 777 # | 783 # |
| 778 # Note that relative paths are relative to the directory from which doxygen is | 784 # Note that relative paths are relative to the directory from which doxygen is |
| 779 # run. | 785 # run. |
| 780 | 786 |
| 781 EXCLUDE = | 787 EXCLUDE = |
| 782 | 788 |
| (...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1920 # The default value is: YES. | 1926 # The default value is: YES. |
| 1921 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | 1927 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. |
| 1922 | 1928 |
| 1923 SEARCH_INCLUDES = YES | 1929 SEARCH_INCLUDES = YES |
| 1924 | 1930 |
| 1925 # The INCLUDE_PATH tag can be used to specify one or more directories that | 1931 # The INCLUDE_PATH tag can be used to specify one or more directories that |
| 1926 # contain include files that are not input files but should be processed by the | 1932 # contain include files that are not input files but should be processed by the |
| 1927 # preprocessor. | 1933 # preprocessor. |
| 1928 # This tag requires that the tag SEARCH_INCLUDES is set to YES. | 1934 # This tag requires that the tag SEARCH_INCLUDES is set to YES. |
| 1929 | 1935 |
| 1930 INCLUDE_PATH = | 1936 INCLUDE_PATH = ../llvm/include |
| 1931 | 1937 |
| 1932 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard | 1938 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard |
| 1933 # patterns (like *.h and *.hpp) to filter out the header-files in the | 1939 # patterns (like *.h and *.hpp) to filter out the header-files in the |
| 1934 # directories. If left blank, the patterns specified with FILE_PATTERNS will be | 1940 # directories. If left blank, the patterns specified with FILE_PATTERNS will be |
| 1935 # used. | 1941 # used. |
| 1936 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | 1942 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. |
| 1937 | 1943 |
| 1938 INCLUDE_FILE_PATTERNS = | 1944 INCLUDE_FILE_PATTERNS = |
| 1939 | 1945 |
| 1940 # The PREDEFINED tag can be used to specify one or more macro names that are | 1946 # The PREDEFINED tag can be used to specify one or more macro names that are |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2304 # 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. |
| 2305 | 2311 |
| 2306 GENERATE_LEGEND = YES | 2312 GENERATE_LEGEND = YES |
| 2307 | 2313 |
| 2308 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot | 2314 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot |
| 2309 # files that are used to generate the various graphs. | 2315 # files that are used to generate the various graphs. |
| 2310 # The default value is: YES. | 2316 # The default value is: YES. |
| 2311 # This tag requires that the tag HAVE_DOT is set to YES. | 2317 # This tag requires that the tag HAVE_DOT is set to YES. |
| 2312 | 2318 |
| 2313 DOT_CLEANUP = YES | 2319 DOT_CLEANUP = YES |
| OLD | NEW |