diff options
| author | Manuel Traut <manut@mecka.net> | 2012-06-03 03:58:08 +0200 |
|---|---|---|
| committer | Manuel Traut <manut@mecka.net> | 2012-06-03 03:58:08 +0200 |
| commit | 9846551e704f5998cd8f62a95b044e2ae8208579 (patch) | |
| tree | 663bd23e77e54ac5d0751d2e1f73b5d04f1a0bdf | |
| parent | 5ab993a94e073077a0ecf4e97bbc35d34eb5fbbb (diff) | |
doxygen: fix configuration file
- remove absolut paths
- don't scan deps directory
Signed-off-by: Manuel Traut <manut@mecka.net>
| -rw-r--r-- | distrio.doxy | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/distrio.doxy b/distrio.doxy index 5c117c0..642a48b 100644 --- a/distrio.doxy +++ b/distrio.doxy @@ -26,7 +26,7 @@ DOXYFILE_ENCODING = UTF-8 # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. -PROJECT_NAME = distributed-io +PROJECT_NAME = distrio # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or @@ -52,7 +52,7 @@ PROJECT_LOGO = # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. -OUTPUT_DIRECTORY = /home/manut/distributed-io/doc +OUTPUT_DIRECTORY = ./doc # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output @@ -665,7 +665,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = /home/manut/distributed-io +INPUT = interfaces io common manager # 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 @@ -722,7 +722,7 @@ FILE_PATTERNS = *.c \ # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. -RECURSIVE = YES +RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a @@ -730,13 +730,13 @@ RECURSIVE = YES # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = +EXCLUDE = deps/* # 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 # from the input. -EXCLUDE_SYMLINKS = NO +EXCLUDE_SYMLINKS = YES # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude |
