From: Matthias Maier Date: Wed, 13 May 2020 05:12:48 +0000 (-0500) Subject: doxygen: Strip full @CMAKE_SOURCE_DIR@ and @CMAKE_BINARY_DIR@ X-Git-Tag: v9.3.0-rc1~1650^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=422dc862082452a6d5d8e4c46e4145d2714c339d;p=dealii.git 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 """ --- 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