summaryrefslogtreecommitdiff
path: root/ges
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.com>2018-03-24 10:30:40 -0400
committerThibault Saunier <tsaunier@igalia.com>2018-03-24 11:37:22 -0300
commitca6e5d4a785a43229c8e23fa750049794945560b (patch)
tree5f42649e109b866ca655a1dee9d735ba529a7e71 /ges
parent5f63dac35ec4b5c71c2e91efa92edf2976953318 (diff)
Meson: Use shared_library() because static build of C# is not supported
When gstreamer-sharp is used as a subproject (e.g. gst-build) and the master project is built with default-library=both, gstreamer-sharp should still only build shared libraries instead of failing to configure. https://bugzilla.gnome.org/show_bug.cgi?id=794656
Diffstat (limited to 'ges')
-rw-r--r--ges/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/ges/meson.build b/ges/meson.build
index b7a70ac..092b72d 100644
--- a/ges/meson.build
+++ b/ges/meson.build
@@ -4,7 +4,7 @@ metadata = files(pkg + '.metadata')
subdir('generated')
-ges_sharp = library(pkg + '-sharp', ges_generate_files,
+ges_sharp = shared_library(pkg + '-sharp', ges_generate_files,
cs_args: ['-nowarn:169', '-nowarn:108', '-nowarn:114', '-unsafe'],
link_with: gst_sharp,
dependencies: [glib_sharp_dep, gio_sharp_dep])