summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2020-12-04 10:34:22 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2020-12-04 10:34:22 +0000
commitcb868354ba497be4ec15581cb6af12d262cc31a3 (patch)
tree77ac98b69a8c368689a8b24f8eaba529c8e5d076
parentc37fbef9c8d35badd784c874cc78c83aeafd2dc5 (diff)
meson: Rename dependencies variable
The dependencies are not only related to libcamera, so remove the incorrect name prefix. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 4d580c2..ab0ca5b 100644
--- a/meson.build
+++ b/meson.build
@@ -13,7 +13,7 @@ src_files = files([
# Point your PKG_CONFIG_PATH environment variable to the
# libcamera install path camera.pc file ($prefix/lib/pkgconfig/camera.pc)
-libcamera_deps = [
+deps = [
dependency('camera', required : true),
dependency('libevent_pthreads'),
]
@@ -24,4 +24,4 @@ add_project_arguments(cpp_arguments, language : 'cpp')
# simple-cam executable
simple_cam = executable('simple-cam', src_files,
- dependencies : libcamera_deps)
+ dependencies : deps)