1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From 54c4c552b27e180256593a019718b1a886dd31f7 Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian <vagrant@reproducible-builds.org>
Date: Fri, 16 Jul 2021 15:13:48 +0000
Subject: [PATCH] doc/CMakeLists.txt: Disable embedding of full path names in
documentation generated by doxygen. (Closes: #991181)
https://reproducible-builds.org/docs/build-path/
---
doc/CMakeLists.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index 6ac7494..9d4e7b5 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -31,6 +31,7 @@ if (DOXYGEN_FOUND)
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/folderclosed.svg
${CMAKE_CURRENT_SOURCE_DIR}/that_style/img/folderopen.svg
${CMAKE_CURRENT_SOURCE_DIR}/that_style/js/striped_bg.js)
+ set(DOXYGEN_FULL_PATH_NAMES no)
set(_doxyfile_template "${CMAKE_BINARY_DIR}/CMakeDoxyfile.in")
set(_target_doxyfile "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile.docs")
--
2.30.2
|