diff options
author | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2018-12-29 00:28:04 +0100 |
---|---|---|
committer | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2019-01-22 14:03:41 +0100 |
commit | fba3d0460750fb4123d66f55315dbd9b34cc3d90 (patch) | |
tree | 5834039a98a2b31495d91006f02d0246e8b94aba /src/cam/meson.build | |
parent | 1369c0b7c3d6b195badd0312a675d68506e51b2e (diff) |
cam: add utility to control cameras
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 <niklas.soderlund@ragnatech.se>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/cam/meson.build')
-rw-r--r-- | src/cam/meson.build | 7 |
1 files changed, 7 insertions, 0 deletions
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) |