From 30b472b4e75d7cc7ec80401ae79cc0a6b1b97f2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Wed, 26 Jan 2011 10:34:21 +0000 Subject: [PATCH] Fixed wrong path stripping in doc generation git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@366 fdac6126-5c0c-442c-9429-916003d36597 --- Doc/doxy.config.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Doc/doxy.config.in b/Doc/doxy.config.in index b7f363cc..1bfc52a8 100644 --- a/Doc/doxy.config.in +++ b/Doc/doxy.config.in @@ -114,7 +114,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 = @CMAKE_CURRENT_SOURCE_DIR@ +STRIP_FROM_PATH = @CMAKE_SOURCE_DIR@ \ + @CMAKE_SOURCE_DIR@/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 @@ -123,7 +124,8 @@ STRIP_FROM_PATH = @CMAKE_CURRENT_SOURCE_DIR@ # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. -STRIP_FROM_INC_PATH = @CMAKE_CURRENT_SOURCE_DIR@/ +STRIP_FROM_INC_PATH = @CMAKE_SOURCE_DIR@ \ + @CMAKE_SOURCE_DIR@/src # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems