From 37a69b35beb0b0d5f3fa9e49cf89d990e9970be3 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Fri, 25 Jun 2021 16:31:28 +0100 Subject: 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 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'), ] -- cgit v1.2.1