From patchwork Mon Aug 5 14:36:51 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 20801 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 D472CC323E for ; Mon, 5 Aug 2024 14:38:05 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 5A839633CB; Mon, 5 Aug 2024 16:38:05 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="unjAAZR3"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id A0628633BA for ; Mon, 5 Aug 2024 16:37:38 +0200 (CEST) Received: from pendragon.ideasonboard.com (81-175-209-231.bb.dnainternet.fi [81.175.209.231]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 1A664581 for ; Mon, 5 Aug 2024 16:36:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1722868607; bh=e3lHYmv0D/SfbZHbgIE9a1/bKT7GpUx1wM6BVpMgfcE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=unjAAZR37NsgjyCH6npIQ484F06/rIq9VTjbtm78RC0k9VqjClpsUPVdO35cAwP6u DrHFsxJcvUtXp7nkfEFXqukDCJT5y/84dhSe91io9+8sQnBJ2oQ/6XL1tcLC5DwoxG dKDvWilOCoYmWBpzWagVcN0fd0nsgPntMKNofxIo= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH v5 15/18] Documentation: Split doxygen_input in public and internal inputs Date: Mon, 5 Aug 2024 17:36:51 +0300 Message-ID: <20240805143654.20870-16-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.44.2 In-Reply-To: <20240805143654.20870-1-laurent.pinchart@ideasonboard.com> References: <20240805143654.20870-1-laurent.pinchart@ideasonboard.com> 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" To prepare for splitting the API documentation in public and internal documents, split the doxygen_input list in the public and internal counterparts. Signed-off-by: Laurent Pinchart Reviewed-by: Daniel Scally Reviewed-by: Kieran Bingham --- Documentation/meson.build | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/Documentation/meson.build b/Documentation/meson.build index 070420715bd1..1d84ed815b50 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -28,27 +28,34 @@ if doxygen.found() and dot.found() output : 'Doxyfile', configuration : cdata) - doxygen_input = [ - doxyfile, - libcamera_base_headers, + doxygen_public_input = [ + libcamera_base_public_headers, libcamera_base_public_sources, - libcamera_base_internal_sources, - libcamera_internal_headers, - libcamera_ipa_headers, - libcamera_ipa_interfaces, libcamera_public_headers, libcamera_public_sources, + ] + + doxygen_internal_input = [ + libcamera_base_private_headers, + libcamera_base_internal_sources, + libcamera_internal_headers, libcamera_internal_sources, + libcamera_ipa_headers, + libcamera_ipa_interfaces, libipa_headers, libipa_sources, ] if is_variable('ipu3_ipa_sources') - doxygen_input += [ipu3_ipa_sources] + doxygen_internal_input += [ipu3_ipa_sources] endif custom_target('doxygen', - input : doxygen_input, + input : [ + doxyfile, + doxygen_public_input, + doxygen_internal_input, + ], output : 'api-html', command : [doxygen, doxyfile], install : true,