From 0081e4e6b2941ea47fdf3959696d8edc2629477c Mon Sep 17 00:00:00 2001 From: Paul Elder Date: Wed, 28 Dec 2022 16:42:42 -0600 Subject: meson: Add 'all' choice to pipelines option Add an 'all' choice to the pipelines option, for building all pipelines. Signed-off-by: Paul Elder Reviewed-by: Laurent Pinchart Reviewed-by: Umang Jain --- meson.build | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'meson.build') diff --git a/meson.build b/meson.build index df9099d0..e86673dd 100644 --- a/meson.build +++ b/meson.build @@ -164,6 +164,18 @@ liblttng = dependency('lttng-ust', required : get_option('tracing')) # are enabled. pipelines = get_option('pipelines') +if pipelines.contains('all') + pipelines = [ + 'imx8-isi', + 'ipu3', + 'raspberrypi', + 'rkisp1', + 'simple', + 'uvcvideo', + 'vimc', + ] +endif + if pipelines.contains('auto') host_cpu = host_machine.cpu_family() pipelines = [] -- cgit v1.2.1