From patchwork Sat Oct 26 09:02:05 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 2226 Return-Path: Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [217.70.183.196]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 49CAD61374 for ; Sat, 26 Oct 2019 11:00:18 +0200 (CEST) X-Originating-IP: 93.2.121.143 Received: from uno.localdomain (143.121.2.93.rev.sfr.net [93.2.121.143]) (Authenticated sender: jacopo@jmondi.org) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id C9AE0E0003; Sat, 26 Oct 2019 09:00:17 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Sat, 26 Oct 2019 11:02:05 +0200 Message-Id: <20191026090205.8127-1-jacopo@jmondi.org> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] include: libcamera: Install control_ids.h 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: Sat, 26 Oct 2019 09:00:18 -0000 Make the auto-generated control_ids.h file as part of the libcamera installation. Signed-off-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- include/libcamera/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/include/libcamera/meson.build b/include/libcamera/meson.build index 4ffbdab3b173..ed8ff917e35a 100644 --- a/include/libcamera/meson.build +++ b/include/libcamera/meson.build @@ -27,6 +27,7 @@ control_ids_h = custom_target('control_ids_h', output : 'control_ids.h', depend_files : gen_controls, command : [gen_controls, '-o', '@OUTPUT@', '@INPUT@'], + install : true, install_dir : join_paths('include', include_dir)) libcamera_api += control_ids_h