From patchwork Thu Apr 16 14:32:48 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 26519 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id D7A53C324E for ; Thu, 16 Apr 2026 14:33:11 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id E02FF62EBF; Thu, 16 Apr 2026 16:33:10 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="hby08FaT"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 9F2B562E4E for ; Thu, 16 Apr 2026 16:33:08 +0200 (CEST) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:a331:5dd8:4904:1326]) by perceval.ideasonboard.com (Postfix) with UTF8SMTPSA id 5AEBB132; Thu, 16 Apr 2026 16:31:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1776349894; bh=ENxeSGf2STn/vMi7Sfm2/XS3+MIBWucoFduHSdN8Q1Y=; h=From:To:Cc:Subject:Date:From; b=hby08FaTRv4sF20pBiZtuqgaYcvSIlPlX7RVinkiSJZ/Pd7YE19G1x47wYubVIpyr qzl27AXH9Z/7RBGw8O7RW58zgzYC97vzQCUPztCBAToCRE4RmA3H2kDV8geTP0pLY9 7dgn9SMCr5SzilHwwxVp3EZLj2mtnaUK6M/071O8= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH] Documentation: Enable treeview generation for doxygen < 1.13.0 Date: Thu, 16 Apr 2026 16:32:48 +0200 Message-ID: <20260416143256.2664804-1-stefan.klug@ideasonboard.com> X-Mailer: git-send-email 2.51.0 MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Between v1 and the now merged v2 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 # doxygen 1.16.1 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 23a0e3626f9d..f11ec593d5ae 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