From d38faa3b1f11a365843128d3e5326a01f4c4d7d6 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Tue, 16 Aug 2011 08:44:29 +0000 Subject: [PATCH] fixed Doxyfile --- qse/doc/Doxyfile.in | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/qse/doc/Doxyfile.in b/qse/doc/Doxyfile.in index 0fe30756..8fd0890c 100644 --- a/qse/doc/Doxyfile.in +++ b/qse/doc/Doxyfile.in @@ -39,7 +39,9 @@ PROJECT_NUMBER = @VERSION@ # where doxygen was started. If left blank the current directory will be used. #OUTPUT_DIRECTORY = ./qse-@VERSION@ -OUTPUT_DIRECTORY = @abs_srcdir@/qse-@VERSION@ +#OUTPUT_DIRECTORY = @srcdir@/qse-@VERSION@ +#OUTPUT_DIRECTORY = @abs_builddir@/qse-@VERSION@ +OUTPUT_DIRECTORY = @builddir@/qse-@VERSION@ # 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 @@ -115,7 +117,8 @@ FULL_PATH_NAMES = YES # If left blank the directory from which doxygen is run is used as the # path to strip. -STRIP_FROM_PATH = @abs_top_srcdir@/include/ +#STRIP_FROM_PATH = @abs_top_srcdir@/include +STRIP_FROM_PATH = @top_srcdir@/include # 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 @@ -565,7 +568,8 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = @abs_top_srcdir@/include @abs_srcdir@/page +#INPUT = @abs_top_srcdir@/include @abs_srcdir@/page +INPUT = @top_srcdir@/include @srcdir@/page # 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 @@ -622,7 +626,8 @@ EXCLUDE_SYMBOLS = # directories that contain example code fragments that are included (see # the \include command). -EXAMPLE_PATH = @abs_top_srcdir@/samples @abs_top_srcdir@/cmd +#EXAMPLE_PATH = @abs_top_srcdir@/samples @abs_top_srcdir@/cmd +EXAMPLE_PATH = @top_srcdir@/samples @top_srcdir@/cmd # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp