From patchwork Wed Mar 25 08:58:05 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3319 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 18DD062BEB for ; Wed, 25 Mar 2020 09:58:12 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="YCF6RoGl"; dkim-atps=neutral Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9371F9D0 for ; Wed, 25 Mar 2020 09:58:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1585126691; bh=JFN7f3E+nLd8kiWr94DCaj2IHAPrqpj+GyLnhzZ3GAY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=YCF6RoGlSyjbAJC+Xw7wwVxKhLeRhDaheRpnKznDFRKnRc786G8tRvEUZwhFZGZJ/ r7lNwCIFQ8VIjzT0NF2Nwu4hQgR/7FI2Hko3+iE+5nqBra4IIVliXHiptrhddqsDgP S8+KDlX+wEg2Yqq+R7y6tLBmJjIIQTU8td5BNhKY= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Wed, 25 Mar 2020 10:58:05 +0200 Message-Id: <20200325085805.11749-4-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200325085805.11749-1-laurent.pinchart@ideasonboard.com> References: <20200325085805.11749-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 3/3] libcamera: Make pipeline handlers selectable at compile time 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: Wed, 25 Mar 2020 08:58:12 -0000 Add a pipelines project option that specifies which pipeline handlers to compile in. The corresponding IPA modules are automatically selected. The default is to compile all pipeline handlers. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- meson_options.txt | 5 +++++ src/ipa/meson.build | 10 ++++++++-- src/libcamera/pipeline/meson.build | 7 +++---- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index b17b6de6f182..6464df837cc3 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -12,6 +12,11 @@ option('gstreamer', value : 'auto', description : 'Compile libcamera GStreamer plugin') +option('pipelines', + type : 'array', + choices : ['ipu3', 'rkisp1', 'uvcvideo', 'vimc'], + description : 'Select which pipeline handlers to include') + option('test', type : 'boolean', description: 'Compile and include the tests') diff --git a/src/ipa/meson.build b/src/ipa/meson.build index 9aaf92494d37..73278a60a99f 100644 --- a/src/ipa/meson.build +++ b/src/ipa/meson.build @@ -9,5 +9,11 @@ config_h.set('IPA_MODULE_DIR', '"' + join_paths(get_option('prefix'), ipa_install_dir) + '"') subdir('libipa') -subdir('rkisp1') -subdir('vimc') + +ipas = ['rkisp1', 'vimc'] + +foreach pipeline : get_option('pipelines') + if ipas.contains(pipeline) + subdir(pipeline) + endif +endforeach diff --git a/src/libcamera/pipeline/meson.build b/src/libcamera/pipeline/meson.build index c1a6ab0484f0..190ca5a8db92 100644 --- a/src/libcamera/pipeline/meson.build +++ b/src/libcamera/pipeline/meson.build @@ -1,4 +1,3 @@ -subdir('ipu3') -subdir('rkisp1') -subdir('uvcvideo') -subdir('vimc') +foreach pipeline : get_option('pipelines') + subdir(pipeline) +endforeach