summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@osg.samsung.com>2017-10-11 23:42:56 +0200
committerThibault Saunier <thibault.saunier@osg.samsung.com>2017-10-11 23:42:56 +0200
commit00dd3def54a82c1485d40c096deae5e473da74aa (patch)
treeb024710dd7deb48dc8fe4fe8ce298bddc0c2dac8
parentadeecf4b4ad40052383e5e78c122e547ce84b131 (diff)
Make our nugget depend on GLib-sharp ones
-rw-r--r--meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 3142c38..b8bfe89 100644
--- a/meson.build
+++ b/meson.build
@@ -94,9 +94,6 @@ if ges_dep.found()
custom_target('GESSharp-nuget',
command: [nuget, '--package-name', 'GESSharp',
'--assembly', ges_sharp.full_path(),
- '--assembly', gst_sharp.full_path(),
- '--assembly', gio_sharp.full_path(),
- '--assembly', glib_sharp.full_path(),
'--dependency=GstSharp:' + meson.project_version(),
'--project-url', 'https://gstreamer.freedesktop.org/modules/gstreamer-sharp.html',
'--icon-url', 'https://gstreamer.freedesktop.org/images/header-logo-top.png',
@@ -104,6 +101,8 @@ if ges_dep.found()
'--version', meson.project_version(),
'--tags', 'GStreamer GES GstSharp bindings',
'--builddir', meson.current_build_dir(),
+ '--dependency', 'GLibSharp:3.22',
+ '--dependency', 'GioSharp:3.22',
],
output: 'GESSharp.' + meson.project_version() + '.nupkg'
)
@@ -120,6 +119,7 @@ custom_target('GstSharp-nuget',
'--version', meson.project_version(),
'--tags', 'GStreamer GstSharp bindings',
'--builddir', meson.current_build_dir(),
+ '--dependency', 'GstSharp:' + meson.project_version(),
],
output: 'GstSharp.' + meson.project_version() + '.nupkg',
)