From patchwork Sun Sep 4 18:40:27 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= X-Patchwork-Id: 17295 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 82411C0DA4 for ; Sun, 4 Sep 2022 18:59:44 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id D84B062042; Sun, 4 Sep 2022 20:59:43 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1662317983; bh=kncjLZiX36iTk/PDycNunBSekZvoQvzPW23jP2JY9rQ=; h=Date:To:List-Id:List-Post:From:List-Subscribe:List-Unsubscribe: List-Archive:Reply-To:List-Help:Subject:From; b=h5VUjtIkEhSuDy2Vudfis8DcMwQwnxqnHyDROQ9JsYMkoAXFcC9XxtPsv9IC+njdj +hHy/UNBP9cBsal6Is0aFiwKq8Ta5dvX2zEWMJm5I2QsbyEZUKzeBiaIFhOqyJQ/LT ZQt7w1Q5sK63tbijIRm2os9Fzo9pgvlPTMAhw7hpOeDt6s5DpKFIE84SgUzyP14fFa u4blDZyFWY9XGhtoie3fPsi4Dk7gRk7gPBgxj5CXZPkDmxaVasrfrtcVeKh56Dx0Rm B4EgMSAR/wLT9BX4i76BON3wYuL3IiiIGMVFaqwbSNu3tvA5bxq/BqTSduSckJsq1q mKNillhTG01hw== Date: Sun, 04 Sep 2022 18:40:27 +0000 To: libcamera-devel@lists.libcamera.org X-Mailman-Approved-At: Sun, 04 Sep 2022 20:59:42 +0200 MIME-Version: 1.0 Message-ID: List-Id: List-Post: X-Patchwork-Original-From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze_via_libcamera-devel?= From: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= Precedence: list X-Mailman-Version: 2.1.29 X-BeenThere: libcamera-devel@lists.libcamera.org List-Subscribe: , List-Unsubscribe: , List-Archive: Reply-To: =?utf-8?q?Barnab=C3=A1s_P=C5=91cze?= List-Help: Subject: [libcamera-devel] [PATCH] libcamera: override "libcamera" dependency in meson Content-Disposition: inline Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Overriding the dependency enables libcamera to be used as a meson subprojet more easily. Signed-off-by: Barnabás Pőcze Reviewed-by: Laurent Pinchart Reviewed-by: Umang Jain --- src/libcamera/meson.build | 2 ++ 1 file changed, 2 insertions(+) -- 2.37.3 diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index ce1f0f2f..63b47b17 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -189,4 +189,6 @@ pkg_mod.generate(libcamera, description : 'Complex Camera Support Library', subdirs : 'libcamera') +meson.override_dependency('libcamera', libcamera_public) + subdir('proxy/worker')