From patchwork Fri Dec 16 12:29:32 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 18025 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 AF5EEC328E for ; Fri, 16 Dec 2022 12:30:22 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 720AB63360; Fri, 16 Dec 2022 13:30:22 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1671193822; bh=2aDr6B6L5+L0eZxbwtrNI5HCG8OB2SMdQmCtFUg4iiw=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=TJ6IDHzXcapU9BFXrPjBR3eekdIhGFosQScQ/BIWEiBg8xNEytXxFd9xQ8E6T+1/S YPnTjbqwhPhKPtvbvrNKjNf7yyezHMQJM06zDdOjV45uPFxWov1WVH6UpUwv8c5f9J dZp+LXYxxa2sSsJA2+6Xz/0ONQii1yHh4i8ggZCG5yAta48umqCf8eSlvZ4wjlqLn4 2l9hVZteUVCbpH6vCa/+ZidWeo1KODsjnhRlB8a39xV7PXkgujNyYh+Qqqo91MXtUC dOQGm8KQ9I4NjdXFzGEtB59bJanRZ+lOhLPc1v2m7sZ6fXg85ex0LBc6D3+O95dcfA yRNAsqbW3VVZA== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 39B57633A6 for ; Fri, 16 Dec 2022 13:30:21 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="oi7raAL9"; dkim-atps=neutral Received: from pyrite.tail37cf.ts.net (h175-177-042-159.catv02.itscom.jp [175.177.42.159]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id C28A3110E; Fri, 16 Dec 2022 13:30:19 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1671193821; bh=2aDr6B6L5+L0eZxbwtrNI5HCG8OB2SMdQmCtFUg4iiw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oi7raAL9e16JR9viteBGEWitXTVbWoZ3v0KUloocUAQ+ZTdsf/xqnSH4BnXIaOg/s p1n6vPWHLB0tvFxU6trRD8zIHA7VQ/yHzSB3Vko+5gjyzsAUIpRU093oE/Wq67QVUG M7bL9IZ+oYmQEwgJFn2Jsd3hrwCYw/kCZKux5jXs= To: libcamera-devel@lists.libcamera.org Date: Fri, 16 Dec 2022 21:29:32 +0900 Message-Id: <20221216122939.256534-12-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20221216122939.256534-1-paul.elder@ideasonboard.com> References: <20221216122939.256534-1-paul.elder@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v9 11/18] lc-compliance: Fix source file ordering in meson.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: , X-Patchwork-Original-From: Paul Elder via libcamera-devel From: Paul Elder Reply-To: Paul Elder Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" From: NĂ­colas F. R. A. Prado The capture_test.cpp file was added in the source list of meson in the wrong place. Fix it so the list is alphabetically sorted. Signed-off-by: NĂ­colas F. R. A. Prado Reviewed-by: Paul Elder Signed-off-by: Paul Elder Reviewed-by: Umang Jain --- Changes in v9: - rebased Changes in v8: - New --- src/apps/lc-compliance/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/lc-compliance/meson.build b/src/apps/lc-compliance/meson.build index 51d9075a..3b1927fd 100644 --- a/src/apps/lc-compliance/meson.build +++ b/src/apps/lc-compliance/meson.build @@ -11,10 +11,10 @@ endif lc_compliance_enabled = true lc_compliance_sources = files([ + 'capture_test.cpp', 'environment.cpp', 'main.cpp', 'simple_capture.cpp', - 'capture_test.cpp', ]) lc_compliance = executable('lc-compliance', lc_compliance_sources,