From 2e8a5187840027460872acc8a8583e4fc15c70be Mon Sep 17 00:00:00 2001 From: Stefan Klug Date: Thu, 16 Apr 2026 16:32:48 +0200 Subject: [PATCH] Documentation: Enable treeview generation for doxygen < 1.13.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Between v2 and the now merged v3 of commit 42d914f20cb0 ("Documentation: Enable doxygen-awesome-css") the GENERATE_TREEVIEW = YES was dropped because it defaults to YES according to the doxygen web documentation. Unfortunately for doxygen < 1.13.0 the default was NO. Fix the value to YES so that doxygen-awesome-css works properly even with older versions of doxygen. Fixes: 42d914f20cb0 ("Documentation: Enable doxygen-awesome-css") Signed-off-by: Stefan Klug Tested-by: Barnabás Pőcze Reviewed-by: Barnabás Pőcze Reviewed-by: Laurent Pinchart --- Documentation/Doxyfile-common.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/Doxyfile-common.in b/Documentation/Doxyfile-common.in index 23a0e362..f11ec593 100644 --- a/Documentation/Doxyfile-common.in +++ b/Documentation/Doxyfile-common.in @@ -57,6 +57,9 @@ IMAGE_PATH = "@TOP_SRCDIR@/Documentation/images" HTML_EXTRA_STYLESHEET = "@TOP_SRCDIR@/Documentation/doxygen-awesome-css/doxygen-awesome.css" \ "@TOP_SRCDIR@/Documentation/doxygen-awesome-css/doxygen-awesome-sidebar-only.css" +# The default value changed to YES in doxygen 1.13.0 +GENERATE_TREEVIEW = YES + GENERATE_LATEX = NO MACRO_EXPANSION = YES