diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2022-01-04 23:26:57 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2022-01-06 11:29:58 +0000 |
commit | cd7863503ae91f477bbd883f35d9845172840349 (patch) | |
tree | f3dd878b3d6e2a0c0dac1de0604125f63073d04d | |
parent | 1db1e31e664c1f613dc964d8519fe75d67b154b6 (diff) |
libcamera: pkg-config: Do not hardcode version
The pkg-config version should not be hardcoded, and it should match the
version of the library, ideally with point releases where possible.
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
-rw-r--r-- | src/libcamera/base/meson.build | 1 | ||||
-rw-r--r-- | src/libcamera/meson.build | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/libcamera/base/meson.build b/src/libcamera/base/meson.build index 0ae3b0aa..7030ad1f 100644 --- a/src/libcamera/base/meson.build +++ b/src/libcamera/base/meson.build @@ -65,7 +65,6 @@ libcamera_base = declare_dependency(sources : [ pkg_mod = import('pkgconfig') pkg_mod.generate(libcamera_base_lib, - version : '1.0', description : 'Camera support base utility library', subdirs : 'libcamera') diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index 7ae909d4..26912ca1 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -162,7 +162,6 @@ libcamera_private = declare_dependency(sources : [ pkg_mod = import('pkgconfig') pkg_mod.generate(libcamera, libraries : libcamera_base_lib, - version : '1.0', description : 'Complex Camera Support Library', subdirs : 'libcamera') |