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 27 28 29 30 31 32 33 34 35
|
From: Kari Pahula <kaol@debian.org>
Date: Fri, 28 Jun 2024 16:17:11 +0300
Subject: Add README.md to Doxygen INPUT
Doxygen is using USE_MDFILE_AS_MAINPAGE to a file that's outside of
INPUT list.
Marking as Forwarded: not-needed, I want a second opinion about his.
Forwarded: not-needed
---
docs/doxygen/Doxyfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/doxygen/Doxyfile b/docs/doxygen/Doxyfile
index 9888cb4..6c95e7b 100644
--- a/docs/doxygen/Doxyfile
+++ b/docs/doxygen/Doxyfile
@@ -786,7 +786,7 @@ WARN_AS_ERROR = YES
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.
-INPUT = ../../library/include/hipfft
+INPUT = ../../library/include/hipfft ../../README.md
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
@@ -968,7 +968,7 @@ FILTER_SOURCE_PATTERNS =
# (index.html). This can be useful if you have a project on for instance GitHub
# and want to reuse the introduction page also for the doxygen output.
-USE_MDFILE_AS_MAINPAGE = ../README.md
+USE_MDFILE_AS_MAINPAGE = ../../README.md
#---------------------------------------------------------------------------
# Configuration options related to source browsing
|