From patchwork Thu Aug 1 15:54:17 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 1723 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 E6BEE61612 for ; Thu, 1 Aug 2019 17:53:05 +0200 (CEST) X-Originating-IP: 82.58.19.211 Received: from uno.homenet.telecomitalia.it (host211-19-dynamic.58-82-r.retail.telecomitalia.it [82.58.19.211]) (Authenticated sender: jacopo@jmondi.org) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 6A8F8E0008; Thu, 1 Aug 2019 15:53:05 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Thu, 1 Aug 2019 17:54:17 +0200 Message-Id: <20190801155420.24694-3-jacopo@jmondi.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190801155420.24694-1-jacopo@jmondi.org> References: <20190801155420.24694-1-jacopo@jmondi.org> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 2/5] meson: options: Add 'android' configuration option X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Aug 2019 15:53:06 -0000 Add an 'android' configuration option, set to false by default, which enables the compilation of the Android HAL adaption layer on top of libcamera. To enable compiling the Camera HAL wrapper in: $ meson configure -Dandroid=true Signed-off-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- meson_options.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meson_options.txt b/meson_options.txt index 97efc85b4412..5fa8176b8e8b 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,3 +1,8 @@ +option('android', + type : 'boolean', + value : false, + description : 'Compile libcamera with Android Camera3 HAL interface') + option('documentation', type : 'boolean', description : 'Generate the project documentation')