From 2b1a8f48f3a414e565cefb809f3e6a7c6aa5f8a7 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Wed, 6 Oct 2021 10:26:00 +0300 Subject: Split V4L2 code into separate libs Create v4l2++ library and pyv4l2, which are independent from the rest of the kms++. Signed-off-by: Tomi Valkeinen --- utils/meson.build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'utils/meson.build') diff --git a/utils/meson.build b/utils/meson.build index b1e7918..ac73b5b 100644 --- a/utils/meson.build +++ b/utils/meson.build @@ -13,5 +13,7 @@ if libevdev_dep.found() executable('kmstouch', 'kmstouch.cpp', dependencies : [ common_deps, libevdev_dep ], install : false) endif -executable('omap-wbcap', 'omap-wbcap.cpp', dependencies : [ common_deps ], install : false) -executable('omap-wbm2m', 'omap-wbm2m.cpp', dependencies : [ common_deps ], install : false) +if get_option('v4l2').enabled() + executable('omap-wbcap', 'omap-wbcap.cpp', dependencies : [ common_deps, libv4l2xx_dep ], install : false) + executable('omap-wbm2m', 'omap-wbm2m.cpp', dependencies : [ common_deps, libv4l2xx_dep ], install : false) +endif -- cgit v1.2.3