-rw-r--r-- | Doxyfile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index 3ff39b3..58c91e2 100644 --- a/Doxyfile.in +++ b/Doxyfile.in | |||
@@ -442,48 +442,49 @@ WARN_NO_PARAMDOC = NO | |||
442 | # doxygen can produce. The string should contain the $file, $line, and $text | 442 | # doxygen can produce. The string should contain the $file, $line, and $text |
443 | # tags, which will be replaced by the file and line number from which the | 443 | # tags, which will be replaced by the file and line number from which the |
444 | # warning originated and the warning text. Optionally the format may contain | 444 | # warning originated and the warning text. Optionally the format may contain |
445 | # $version, which will be replaced by the version of the file (if it could | 445 | # $version, which will be replaced by the version of the file (if it could |
446 | # be obtained via FILE_VERSION_FILTER) | 446 | # be obtained via FILE_VERSION_FILTER) |
447 | 447 | ||
448 | WARN_FORMAT = "$file:$line: $text" | 448 | WARN_FORMAT = "$file:$line: $text" |
449 | 449 | ||
450 | # The WARN_LOGFILE tag can be used to specify a file to which warning | 450 | # The WARN_LOGFILE tag can be used to specify a file to which warning |
451 | # and error messages should be written. If left blank the output is written | 451 | # and error messages should be written. If left blank the output is written |
452 | # to stderr. | 452 | # to stderr. |
453 | 453 | ||
454 | WARN_LOGFILE = | 454 | WARN_LOGFILE = |
455 | 455 | ||
456 | #--------------------------------------------------------------------------- | 456 | #--------------------------------------------------------------------------- |
457 | # configuration options related to the input files | 457 | # configuration options related to the input files |
458 | #--------------------------------------------------------------------------- | 458 | #--------------------------------------------------------------------------- |
459 | 459 | ||
460 | # The INPUT tag can be used to specify the files and/or directories that contain | 460 | # The INPUT tag can be used to specify the files and/or directories that contain |
461 | # documented source files. You may enter file names like "myfile.cpp" or | 461 | # documented source files. You may enter file names like "myfile.cpp" or |
462 | # directories like "/usr/src/myproject". Separate the files or directories | 462 | # directories like "/usr/src/myproject". Separate the files or directories |
463 | # with spaces. | 463 | # with spaces. |
464 | 464 | ||
465 | INPUT = @srcdir@/include/opkele/ \ | 465 | INPUT = @srcdir@/include/opkele/ \ |
466 | @srcdir@/include/opkele/oauth/ \ | ||
466 | @srcdir@/lib/ | 467 | @srcdir@/lib/ |
467 | 468 | ||
468 | # This tag can be used to specify the character encoding of the source files that | 469 | # This tag can be used to specify the character encoding of the source files that |
469 | # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default | 470 | # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default |
470 | # input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding. | 471 | # input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding. |
471 | # See http://www.gnu.org/software/libiconv for the list of possible encodings. | 472 | # See http://www.gnu.org/software/libiconv for the list of possible encodings. |
472 | 473 | ||
473 | INPUT_ENCODING = UTF-8 | 474 | INPUT_ENCODING = UTF-8 |
474 | 475 | ||
475 | # If the value of the INPUT tag contains directories, you can use the | 476 | # If the value of the INPUT tag contains directories, you can use the |
476 | # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp | 477 | # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp |
477 | # and *.h) to filter out the source-files in the directories. If left | 478 | # and *.h) to filter out the source-files in the directories. If left |
478 | # blank the following patterns are tested: | 479 | # blank the following patterns are tested: |
479 | # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx | 480 | # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx |
480 | # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py | 481 | # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py |
481 | 482 | ||
482 | FILE_PATTERNS = *.h \ | 483 | FILE_PATTERNS = *.h \ |
483 | *.cc | 484 | *.cc |
484 | 485 | ||
485 | # The RECURSIVE tag can be used to turn specify whether or not subdirectories | 486 | # The RECURSIVE tag can be used to turn specify whether or not subdirectories |
486 | # should be searched for input files as well. Possible values are YES and NO. | 487 | # should be searched for input files as well. Possible values are YES and NO. |
487 | # If left blank NO is used. | 488 | # If left blank NO is used. |
488 | 489 | ||
489 | RECURSIVE = NO | 490 | RECURSIVE = NO |