| OLD | NEW |
| 1 # Doxyfile 1.8.10 | 1 # Doxyfile 1.8.10 |
| 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 # name=definition (no spaces). If the definition and the "=" are omitted, "=1" | 311 # name=definition (no spaces). If the definition and the "=" are omitted, "=1" |
| 312 # is assumed. To prevent a macro definition from being undefined via #undef or | 312 # is assumed. To prevent a macro definition from being undefined via #undef or |
| 313 # recursively expanded use the := operator instead of the = operator. | 313 # recursively expanded use the := operator instead of the = operator. |
| 314 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. | 314 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. |
| 315 | 315 |
| 316 PREDEFINED = OPUS_EXPORT= \ | 316 PREDEFINED = OPUS_EXPORT= \ |
| 317 OPUS_CUSTOM_EXPORT= \ | 317 OPUS_CUSTOM_EXPORT= \ |
| 318 OPUS_CUSTOM_EXPORT_STATIC= \ | 318 OPUS_CUSTOM_EXPORT_STATIC= \ |
| 319 OPUS_WARN_UNUSED_RESULT= \ | 319 OPUS_WARN_UNUSED_RESULT= \ |
| 320 OPUS_ARG_NONNULL(_x)= | 320 OPUS_ARG_NONNULL(_x)= |
| 321 |
| 322 #--------------------------------------------------------------------------- |
| 323 # Configuration options related to the dot tool |
| 324 #--------------------------------------------------------------------------- |
| 325 |
| 326 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is |
| 327 # available from the path. This tool is part of Graphviz (see: |
| 328 # http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent |
| 329 # Bell Labs. |
| 330 |
| 331 # Debian defaults to YES here, while Fedora and Homebrew default to NO. |
| 332 # So we set this based on whether the graphviz package is available at |
| 333 # configure time. |
| 334 # |
| 335 HAVE_DOT = @HAVE_DOT@ |
| OLD | NEW |