From patchwork Tue Dec 5 14:46:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 19281 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 E262EC3226 for ; Tue, 5 Dec 2023 14:46:12 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 983D661D9F; Tue, 5 Dec 2023 15:46:12 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1701787572; bh=lnZkehQKhoNJxZjuFDTgVM1Lo+5qSRRCqpzJgYaZCCI=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=naIccFQnGMtY9Zqrk5kYW5NBz1H7XsUVKyXLlVYMLc82lNgP2QPffhIsM5Ur895yY DJf6TGugrsuCuzPG+T0OB4FTu7iSxTAC5/poUPdOvCQSR7jJv++WyOV/SYYp6fZxBE gbT6EFcUBPwruK/SaIvIoovEpw0nWPjalwh4MlsE/67/LWBt77PxNVwX0xDp5Q14xL owrA1MGJBBFjFBYEyJAYNG61M5sbjNrZyPj1tLEkwbawDjMqsMs36U5Fy6xF95zMN3 2c1f8W0XKD7mss/Z0ORKIk7/lyGy6pCkdkOK2F45d+gLdcytVmb7Co6pAnF18sogUq oOm/74QfXev9A== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id BA57361D9B for ; Tue, 5 Dec 2023 15:46:11 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="fVpSbJMb"; dkim-atps=neutral Received: from pendragon.ideasonboard.com (213-243-189-158.bb.dnainternet.fi [213.243.189.158]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9445C844; Tue, 5 Dec 2023 15:45:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1701787531; bh=lnZkehQKhoNJxZjuFDTgVM1Lo+5qSRRCqpzJgYaZCCI=; h=From:To:Cc:Subject:Date:From; b=fVpSbJMbaIy9APminnyqre9tvN6Xu/B8Y0LTQmLpBggZspxAkKhMP/U0stGxxb30d 8ty01P3AtmMO98hFTwGzKmxz3dn9isZL4D9ZmcgwpixUHAHIaayaXymxuro/XjBRk3 UCMwk22M1Hg4SEW7La7GzJgUywe8ww/saBXyhzA0= To: libcamera-devel@lists.libcamera.org Date: Tue, 5 Dec 2023 16:46:19 +0200 Message-ID: <20231205144619.26252-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] meson_options: Sort options alphabetically 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-Patchwork-Original-From: Laurent Pinchart via libcamera-devel From: Laurent Pinchart Reply-To: Laurent Pinchart Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The pycamera option was added at the end of the file, breaking alphabetical order. Restore it. Signed-off-by: Laurent Pinchart Reviewed-by: Tomi Valkeinen --- meson_options.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) base-commit: 9d08a134c4195ad98dd09c5a9e2558a5765762f7 diff --git a/meson_options.txt b/meson_options.txt index fad928af4b62..5fdc7be87a54 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -51,6 +51,11 @@ option('pipelines', ], description : 'Select which pipeline handlers to build. If this is set to "auto", all the pipelines applicable to the target architecture will be built. If this is set to "all", all the pipelines will be built. If both are selected then "all" will take precedence.') +option('pycamera', + type : 'feature', + value : 'disabled', + description : 'Enable libcamera Python bindings (experimental)') + option('qcam', type : 'feature', value : 'auto', @@ -75,8 +80,3 @@ option('v4l2', type : 'boolean', value : false, description : 'Compile the V4L2 compatibility layer') - -option('pycamera', - type : 'feature', - value : 'disabled', - description : 'Enable libcamera Python bindings (experimental)')