summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2022-06-05 14:33:23 +0200
committerJens Georg <mail@jensge.org>2022-06-05 14:33:23 +0200
commit767388bc16e08d4e1e1f419555165cc1816be931 (patch)
tree76442214678c5c12462513313e64f0f3fba93d97
parent42a1c0493917528e5a67ad8e13422aa84c188496 (diff)
downloadgupnp-av-master.tar.gz
build: Fix Requires: line of pkg-config fileHEADmaster
-rw-r--r--meson.build6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 4c072c3..f4b629f 100644
--- a/meson.build
+++ b/meson.build
@@ -87,6 +87,12 @@ subdir('data')
pkg = import('pkgconfig')
pkg.generate(
gupnp_av_lib,
+ requires : [
+ 'glib-2.0',
+ 'gobject-2.0',
+ 'gio-2.0',
+ 'libxml-2.0'
+ ],
subdirs : 'gupnp-av-1.0',
description : 'GObject-based AV specific UPnP library'
)