From 705b4b8e3b7dd56c37cd4e8eea2af008fb8093a5 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Wed, 13 May 2020 00:12:48 -0500 Subject: [PATCH] doxygen: Strip full @CMAKE_SOURCE_DIR@ and @CMAKE_BINARY_DIR@ The current configuration fails to strip the repository path from source directories, e.g., on the homepage we have for example: """ The documentation for this struct was generated from the following files: deal.II/lac/petsc_precondition.h /home/dealii/dealii/source/lac/petsc_precondition.cc """ With this change this now reads: """ The documentation for this struct was generated from the following files: include/deal.II/lac/petsc_precondition.h source/lac/petsc_precondition.cc """ --- doc/doxygen/options.dox.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/doxygen/options.dox.in b/doc/doxygen/options.dox.in index d0147c5490..43523a0672 100644 --- a/doc/doxygen/options.dox.in +++ b/doc/doxygen/options.dox.in @@ -25,8 +25,9 @@ CASE_SENSE_NAMES = YES INLINE_INHERITED_MEMB = NO -STRIP_FROM_PATH = @CMAKE_SOURCE_DIR@/include @CMAKE_BINARY_DIR@/include -STRIP_FROM_INC_PATH = @CMAKE_SOURCE_DIR@/include @CMAKE_BINARY_DIR@/include +STRIP_FROM_PATH = @CMAKE_SOURCE_DIR@ @CMAKE_BINARY_DIR@ +STRIP_FROM_INC_PATH = @CMAKE_SOURCE_DIR@ @CMAKE_BINARY_DIR@ + FULL_PATH_NAMES = YES JAVADOC_AUTOBRIEF = NO INHERIT_DOCS = YES -- 2.39.5