summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2022-06-05 13:30:16 +0200
committerJens Georg <mail@jensge.org>2022-06-05 13:30:16 +0200
commit8b1e1d151bb59e3fa389d281030acaf24b25de78 (patch)
treeae6391dec9025bb9c349e2e19cd6090ab5930927
parent9bc1b54cf0faa03c03333b8c3a01354f92ea0c42 (diff)
downloadgupnp-8b1e1d151bb59e3fa389d281030acaf24b25de78.tar.gz
build: Fix pkg-config Requires: line
-rw-r--r--libgupnp/meson.build9
1 files changed, 8 insertions, 1 deletions
diff --git a/libgupnp/meson.build b/libgupnp/meson.build
index e0a7c3d..0582832 100644
--- a/libgupnp/meson.build
+++ b/libgupnp/meson.build
@@ -128,7 +128,14 @@ pkg.generate(
libgupnp,
subdirs: GUPNP_API_NAME,
name : GUPNP_API_NAME,
- requires : ['glib-2.0', 'gio-2.0', 'gssdp-1.6'],
+ requires : [
+ 'glib-2.0',
+ 'gio-2.0',
+ 'gobject-2.0',
+ 'gssdp-1.6',
+ 'libsoup-3.0',
+ 'libxml-2.0'
+ ],
description : 'GObject-based UPnP library',
version : meson.project_version(),
filebase : GUPNP_API_NAME