summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2021-06-25 16:31:28 +0100
committerKieran Bingham <kieran.bingham@ideasonboard.com>2021-06-25 16:31:51 +0100
commit37a69b35beb0b0d5f3fa9e49cf89d990e9970be3 (patch)
tree6ae346db1987d0aecb8d15c91cd1db141e566031
parentcb868354ba497be4ec15581cb6af12d262cc31a3 (diff)
meson: Update to find the new libcamera package name
The libcamera pkg-config file has been renamed from camera.pc to libcamera.pc. Update the build system accordingly. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index ab0ca5b..38c1889 100644
--- a/meson.build
+++ b/meson.build
@@ -14,7 +14,7 @@ src_files = files([
# Point your PKG_CONFIG_PATH environment variable to the
# libcamera install path camera.pc file ($prefix/lib/pkgconfig/camera.pc)
deps = [
- dependency('camera', required : true),
+ dependency('libcamera', required : true),
dependency('libevent_pthreads'),
]