From patchwork Thu Sep 30 09:55:10 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jean-Michel Hautbois X-Patchwork-Id: 14009 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 87C43C3243 for ; Thu, 30 Sep 2021 09:55:36 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 408B6691C3; Thu, 30 Sep 2021 11:55:36 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="Gf8v3eSR"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id D2C72691B4 for ; Thu, 30 Sep 2021 11:55:20 +0200 (CEST) Received: from tatooine.ideasonboard.com (unknown [IPv6:2a01:e0a:169:7140:bab4:22c5:662d:e478]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 2552FB2B; Thu, 30 Sep 2021 11:55:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1632995720; bh=4zm0+6D4Z79mH0HKtoHlRe16zrM2CXyCnMByCJcsfAU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Gf8v3eSRPSOz4o5Fy/8jY2dFRnrIq6sb64mPh//0ejOF3jUT++mtfhDI2bUFK87r8 O5d6gWBOZCfhYYafdiAuHLatKRuWw/wC8ymKmsAzmOvdDcG6W6pXtfSioQhmda+MWS 825b9LG3zT6UJq1svKVfqeZPIgpC3mZseLPs3QLM= From: Jean-Michel Hautbois To: libcamera-devel@lists.libcamera.org Date: Thu, 30 Sep 2021 11:55:10 +0200 Message-Id: <20210930095513.76213-16-jeanmichel.hautbois@ideasonboard.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210930095513.76213-1-jeanmichel.hautbois@ideasonboard.com> References: <20210930095513.76213-1-jeanmichel.hautbois@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 15/18] Documentation: Include IPU3 in Doxygen build 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" From: Kieran Bingham The IPU3 is documented using Doxygen within the code. Include the IPU3 IPA as part of the doxygen build sources. This will ideally be split to it's own 'section' of the doxygen output. Signed-off-by: Kieran Bingham --- Documentation/Doxyfile.in | 1 + Documentation/meson.build | 1 + 2 files changed, 2 insertions(+) diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in index 6e627192..37b231bc 100644 --- a/Documentation/Doxyfile.in +++ b/Documentation/Doxyfile.in @@ -790,6 +790,7 @@ WARN_LOGFILE = INPUT = "@TOP_SRCDIR@/include/libcamera" \ "@TOP_SRCDIR@/src/ipa/libipa" \ + "@TOP_SRCDIR@/src/ipa/ipu3" \ "@TOP_SRCDIR@/src/libcamera" \ "@TOP_BUILDDIR@/include/libcamera" \ "@TOP_BUILDDIR@/src/libcamera" diff --git a/Documentation/meson.build b/Documentation/meson.build index c4bd3c7f..c174c945 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -31,6 +31,7 @@ if doxygen.found() and dot.found() libcamera_sources, libipa_headers, libipa_sources, + ipu3_ipa_sources, ], output : 'api-html', command : [doxygen, doxyfile],