[v2,2/2] meson: Build virtual pipeline by default
diff mbox series

Message ID 20260626092847.289764-3-robert.mader@collabora.com
State New
Headers show
Series
  • meson: Build virtual pipeline by default
Related show

Commit Message

Robert Mader June 26, 2026, 9:28 a.m. UTC
The virtual pipeline is very helpful for debugging purposes and very
small. One big reason to not build it by default in the past was likely
the libyuv dependency, which many distros did not ship by default.

By now big distros like Debian, Fedora, and others ship libyuv and
already use it when building libcamera. Fedora even enables both test
pipelines by default.

Thus let's build the virtual pipeline by default, facilitating libcamera
adoption.

Signed-off-by: Robert Mader <robert.mader@collabora.com>
Reviewed-by: Barnabás Pőcze <barnabas.pocze@ideasonboard.com>
Acked-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch
diff mbox series

diff --git a/meson.build b/meson.build
index 9cd73462f..3b8d54a65 100644
--- a/meson.build
+++ b/meson.build
@@ -224,7 +224,7 @@  pipelines_support = {
     'simple':       ['any'],
     'uvcvideo':     ['any'],
     'vimc':         ['test'],
-    'virtual':      ['test'],
+    'virtual':      ['any'],
 }
 
 if wanted_pipelines.contains('all')