From patchwork Tue Jul 15 13:44:07 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= X-Patchwork-Id: 23820 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 6447BBE175 for ; Tue, 15 Jul 2025 13:44:14 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 744CD68F59; Tue, 15 Jul 2025 15:44:13 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="Xerz9TLm"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 50B5A6186B for ; Tue, 15 Jul 2025 15:44:11 +0200 (CEST) Received: from pb-laptop.local (185.221.140.39.nat.pool.zt.hu [185.221.140.39]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id AC8997E4 for ; Tue, 15 Jul 2025 15:43:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1752587018; bh=ZTpuRqYPmzrWXtsjmMPFfkCU5a5lngpbBIj9h6XfXho=; h=From:To:Subject:Date:From; b=Xerz9TLmjMrGN2G6MPf3fM7q6wkgruLGNUu1xu1eMGCshU/rKZ32eCxk05lBmbzmh 4nA27eMiJ2xGiNt9vyIYk3dU/yb5zm3POhhv3mt+obpAKV8bVBY3Bk/o4e2U7kduQ+ KfB1S8meE0T5o2PJOr4fracL5NjlCX+GsfoJdAtk= From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= To: libcamera-devel@lists.libcamera.org Subject: [PATCH v1] Documentation: Make `doxygen-internal` depend on public inputs Date: Tue, 15 Jul 2025 15:44:07 +0200 Message-ID: <20250715134407.187697-1-barnabas.pocze@ideasonboard.com> X-Mailer: git-send-email 2.50.1 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" The internal documentation is a superset of the public one, so make the `doxygen-internal` target depend on the public input files. Otherwise the internal documentation is not rebuilt if a "public"file changes. Before: $ touch src/libcamera/camera.cpp $ ninja -C build -v # ... [6/116] /usr/bin/doxygen Documentation/Doxyfile-public # ... After: $ touch src/libcamera/camera.cpp $ ninja -C build -v # ... [6/117] /usr/bin/doxygen Documentation/Doxyfile-public # ... [9/117] /usr/bin/doxygen Documentation/Doxyfile-internal # ... Signed-off-by: Barnabás Pőcze Reviewed-by: Daniel Scally Reviewed-by: Kieran Bingham --- Documentation/meson.build | 1 + 1 file changed, 1 insertion(+) -- 2.50.1 diff --git a/Documentation/meson.build b/Documentation/meson.build index 0fc5909d0..3afdcc1a8 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -103,6 +103,7 @@ if doxygen.found() and dot.found() input : [ doxyfile, doxyfile_common, + doxygen_public_input, doxygen_internal_input, ], output : 'internal-api-html',