diff options
Diffstat (limited to 'Doxyfile.in')
-rw-r--r-- | Doxyfile.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index 547a7db190..cdaccd75cc 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -61,7 +61,7 @@ PROJECT_LOGO = # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. -OUTPUT_DIRECTORY = @top_builddir@/doc/doxygen +OUTPUT_DIRECTORY = @abs_top_builddir@/doc/doxygen # 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 format and @@ -173,7 +173,7 @@ FULL_PATH_NAMES = YES # will be relative from the directory where doxygen is started. # This tag requires that the tag FULL_PATH_NAMES is set to YES. -STRIP_FROM_PATH = @top_srcdir@/src +STRIP_FROM_PATH = ./src # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the # path mentioned in the documentation of a class, which tells the reader which @@ -256,7 +256,7 @@ TAB_SIZE = 8 ALIASES = -ALIASES += refdir{1}="\ref @top_srcdir@/src/\1 \"\1\"" +ALIASES += refdir{1}="\ref ./src/\1 \"\1\"" # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding "class=itcl::class" @@ -818,7 +818,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = @top_srcdir@/src/ +INPUT = ./src/ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -860,9 +860,9 @@ RECURSIVE = YES # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = @top_srcdir@/src/ext \ - @top_srcdir@/src/trunnel \ - @top_srcdir@/src/test +EXCLUDE = ./src/ext \ + ./src/trunnel \ + ./src/test # 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 |