| 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 1968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1979 INCLUDE_FILE_PATTERNS = | 1979 INCLUDE_FILE_PATTERNS = |
| 1980 | 1980 |
| 1981 # The PREDEFINED tag can be used to specify one or more macro names that are | 1981 # The PREDEFINED tag can be used to specify one or more macro names that are |
| 1982 # defined before the preprocessor is started (similar to the -D option of e.g. | 1982 # defined before the preprocessor is started (similar to the -D option of e.g. |
| 1983 # gcc). The argument of the tag is a list of macros of the form: name or | 1983 # gcc). The argument of the tag is a list of macros of the form: name or |
| 1984 # name=definition (no spaces). If the definition and the "=" are omitted, "=1" | 1984 # name=definition (no spaces). If the definition and the "=" are omitted, "=1" |
| 1985 # is assumed. To prevent a macro definition from being undefined via #undef or | 1985 # is assumed. To prevent a macro definition from being undefined via #undef or |
| 1986 # recursively expanded use the := operator instead of the = operator. | 1986 # recursively expanded use the := operator instead of the = operator. |
| 1987 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | 1987 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. |
| 1988 | 1988 |
| 1989 PREDEFINED = DOXYGEN \ | 1989 PREDEFINED = ALIGNAS(x)= \ |
| 1990 DOXYGEN \ |
| 1991 MSVC_POP_WARNING()= \ |
| 1992 MSVC_PUSH_DISABLE_WARNING(x)= \ |
| 1990 __attribute__(x)= | 1993 __attribute__(x)= |
| 1991 | 1994 |
| 1992 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this | 1995 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this |
| 1993 # tag can be used to specify a list of macro names that should be expanded. The | 1996 # tag can be used to specify a list of macro names that should be expanded. The |
| 1994 # macro definition that is found in the sources will be used. Use the PREDEFINED | 1997 # macro definition that is found in the sources will be used. Use the PREDEFINED |
| 1995 # tag if you want to use a different macro definition that overrules the | 1998 # tag if you want to use a different macro definition that overrules the |
| 1996 # definition found in the source code. | 1999 # definition found in the source code. |
| 1997 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | 2000 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. |
| 1998 | 2001 |
| 1999 EXPAND_AS_DEFINED = | 2002 EXPAND_AS_DEFINED = |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2360 # This tag requires that the tag HAVE_DOT is set to YES. | 2363 # This tag requires that the tag HAVE_DOT is set to YES. |
| 2361 | 2364 |
| 2362 GENERATE_LEGEND = YES | 2365 GENERATE_LEGEND = YES |
| 2363 | 2366 |
| 2364 # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot | 2367 # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot |
| 2365 # files that are used to generate the various graphs. | 2368 # files that are used to generate the various graphs. |
| 2366 # The default value is: YES. | 2369 # The default value is: YES. |
| 2367 # This tag requires that the tag HAVE_DOT is set to YES. | 2370 # This tag requires that the tag HAVE_DOT is set to YES. |
| 2368 | 2371 |
| 2369 DOT_CLEANUP = YES | 2372 DOT_CLEANUP = YES |
| OLD | NEW |