diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2020-05-07 10:48:52 -0400 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-05-10 15:01:54 +0300 |
commit | 56ff904915ed264c3b9625a38cbdddb77411c431 (patch) | |
tree | 0fc4e33bbfc85d9e086f13973065562bb3702e34 /meson.build | |
parent | a5a59b14588ee70510e675392d44dbbf42c8f537 (diff) |
pkgconfig: Fix include directory path
Should be $includedir/libcamera, as we install into a subdirectory name
'libcamera'. This is fixed by passing the 'subdirs' argument to the pkgconfig
generator.
Signed-off-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 6c571a17..59829e19 100644 --- a/meson.build +++ b/meson.build @@ -116,4 +116,5 @@ pkg_mod.generate(libraries : libcamera, version : '1.0', name : 'libcamera', filebase : 'camera', - description : 'Complex Camera Support Library') + description : 'Complex Camera Support Library', + subdirs : 'libcamera') |