From fba3d0460750fb4123d66f55315dbd9b34cc3d90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20S=C3=B6derlund?= Date: Sat, 29 Dec 2018 00:28:04 +0100 Subject: cam: add utility to control cameras MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Provide a utility to interact with cameras. This initial state is limited and only supports listing cameras in the system and selecting a camera to interact with. There is not much a interacting possible yet with a camera so the tool simply exercise the API to get hold of a camera. Signed-off-by: Niklas Söderlund Acked-by: Laurent Pinchart --- src/cam/meson.build | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/cam/meson.build (limited to 'src/cam/meson.build') diff --git a/src/cam/meson.build b/src/cam/meson.build new file mode 100644 index 00000000..809a40e0 --- /dev/null +++ b/src/cam/meson.build @@ -0,0 +1,7 @@ +cam_sources = files([ + 'cam.cpp', +]) + +cam = executable('cam', cam_sources, + link_with : libcamera, + include_directories : libcamera_includes) -- cgit v1.2.1