diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2020-11-10 16:05:34 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2020-12-30 15:31:53 +0000 |
commit | 0e6cd15b063399e83a5a964f9f311db5042c27fa (patch) | |
tree | b0673ebdf982f9ea1513b0f99fe01dd1d239768b /src/v4l2 | |
parent | 85f01678a04663e4015ff870cd4d738de302c616 (diff) |
src: meson: Simplify v4l2 enablement
Simplify the src level meson file by moving the declaration of the v4l2
subdir to match the other invocations, making use of 'subdir_done()' to
break out if the adaptation layer is not enabled.
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/v4l2')
-rw-r--r-- | src/v4l2/meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/v4l2/meson.build b/src/v4l2/meson.build index e3838f0b..dbe6a424 100644 --- a/src/v4l2/meson.build +++ b/src/v4l2/meson.build @@ -1,5 +1,9 @@ # SPDX-License-Identifier: CC0-1.0 +if not get_option('v4l2') + subdir_done() +endif + v4l2_compat_sources = files([ 'v4l2_camera.cpp', 'v4l2_camera_file.cpp', |