From patchwork Sun Mar 8 00:04:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3053 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 482B660424 for ; Sun, 8 Mar 2020 01:04:43 +0100 (CET) Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CC60F5F; Sun, 8 Mar 2020 01:04:42 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1583625883; bh=jZ/kP3uIB2vXSgpE39CJ4oFTiU3Uf96zgAJkmWdQR3g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rg5j1lrlWa60b623H3j+DJyW04ha7urQ/eJFw8stPHQAt57xfniRP84N4dnaW1nE0 P7BnLJbT2tWqgaw3bTlhG8xJ1gjtR6GL0unHxZSAwJwRd8Y1zvYMPZSUdKFToIVzRq 7ip+YVByZ6AXwownt2bMrOkASQWSdOGD9liRgudw= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Sun, 8 Mar 2020 02:04:29 +0200 Message-Id: <20200308000433.2917-3-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200308000433.2917-1-laurent.pinchart@ideasonboard.com> References: <20200308000433.2917-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v4 2/6] include: libcamera: meson: Add control headers to the libcamera_api array 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: , X-List-Received-Date: Sun, 08 Mar 2020 00:04:44 -0000 From: Kieran Bingham The libcamera_api array is meant to contain all the headers from the libcamera public API, for the purpose of generating documentation and creating the libcamera_dep dependency. The generated control headers are part of the libcamera public API, and used to be included in the libcamera_api array until commit f870591a9bf5 ("libcamera: properties: Add location property") inadvertently removed them. Add them back. Fixes: f870591a9bf5 ("libcamera: properties: Add location property") Signed-off-by: Kieran Bingham [Split the change out and reworded the commit message] Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- include/libcamera/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/libcamera/meson.build b/include/libcamera/meson.build index f47c583cbbc0..88edf620f69e 100644 --- a/include/libcamera/meson.build +++ b/include/libcamera/meson.build @@ -44,6 +44,8 @@ foreach header : control_source_files install_dir : join_paths('include', include_dir)) endforeach +libcamera_api += control_headers + gen_header = files('gen-header.sh') libcamera_h = custom_target('gen-header',