diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-05-08 09:00:25 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-05-08 09:00:25 (GMT) |
commit | 84396475cb50cec0d91cd2bfe9b8ae98fbaca0bd (patch) | |
tree | 6142f518587554af20353688dc7e5bbb3176242d /Doxyfile.in | |
parent | 6c25b8fa2476d08a0c04fdbc41c1e4d76bacd3cf (diff) |
Fix Doxygen to include the relevant files.
The Doxygen configuration was not updated when the directory
structure was changed long ago. The documentation was not properly
generated.
Diffstat (limited to 'Doxyfile.in')
-rw-r--r-- | Doxyfile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index cb739ec..f2ac3fc 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -648,7 +648,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = @PROJECT_SOURCE_DIR@/src/lib +INPUT = @PROJECT_SOURCE_DIR@/src/lib @PROJECT_SOURCE_DIR@/include # 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 @@ -680,7 +680,7 @@ RECURSIVE = NO # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = @PROJECT_SOURCE_DIR@/src/lib/md5.c @PROJECT_SOURCE_DIR@/src/lib/md5.h +EXCLUDE = @PROJECT_SOURCE_DIR@/src/lib/md5.c @PROJECT_SOURCE_DIR@/include/md5.h @PROJECT_SOURCE_DIR@/include/tng_io.hpp @PROJECT_SOURCE_DIR@/src/lib/tng_io.c # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded |