author | Michael Krelin <hacker@klever.net> | 2008-05-17 22:08:00 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-05-17 22:08:00 (UTC) |
commit | 7f314eb6b8cb6db5076ee785f59c5c52f224a897 (patch) (side-by-side diff) | |
tree | 76e53b70bbb0504087482fc891e58a924d483f74 /Doxyfile.in | |
parent | c4a18d4511340f87e2e0176e8889cc7fc2471006 (diff) | |
download | libopkele-7f314eb6b8cb6db5076ee785f59c5c52f224a897.zip libopkele-7f314eb6b8cb6db5076ee785f59c5c52f224a897.tar.gz libopkele-7f314eb6b8cb6db5076ee785f59c5c52f224a897.tar.bz2 |
doxygen: add oauth directory to doxygen input
Signed-off-by: Michael Krelin <hacker@klever.net>
-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 # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = @srcdir@/include/opkele/ \ + @srcdir@/include/opkele/oauth/ \ @srcdir@/lib/ # This tag can be used to specify the character encoding of the source files that # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default # input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding. # See http://www.gnu.org/software/libiconv for the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py FILE_PATTERNS = *.h \ *.cc # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO |