From: Thibault Saunier Date: Thu, 17 May 2018 16:19:21 +0000 (-0400) Subject: Do not try to generated binding for libgstriff and libgstfft which are not introspected X-Git-Tag: 1.19.3~483^2~52 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9439399cd50b3d6c056aa1857b02e305555d2e39;p=platform%2Fupstream%2Fgstreamer.git Do not try to generated binding for libgstriff and libgstfft which are not introspected --- diff --git a/meson.build b/meson.build index 3ce6578..ea9314e 100644 --- a/meson.build +++ b/meson.build @@ -162,11 +162,13 @@ bindinate = find_program('bindinate', required: false) if bindinate.found() run_target('bindinate_gstreamer', command: [bindinate, - '--name=gstreamer', '--regenerate=true', - '--merge-with=GstApp-1.0,GstAudio-1.0,GstBase-1.0,GstController-1.0,GstFft-1.0,GstNet-1.0,GstPbutils-1.0,GstRiff-1.0,GstRtp-1.0,GstRtsp-1.0,GstSdp-1.0,GstTag-1.0,GstVideo-1.0', - '--gir=Gst-1.0'] - ) - run_target('bindinate_ges', + '--name=gstreamer', '--regenerate=true', + '--merge-with=GstApp-1.0,GstAudio-1.0,GstBase-1.0,GstController-1.0,GstNet-1.0,GstPbutils-1.0,GstRtp-1.0,GstRtsp-1.0,GstSdp-1.0,GstTag-1.0,GstVideo-1.0', + '--gir=Gst-1.0', + '--copy-girs=@0@'.format(join_paths(meson.current_source_dir(), 'girs'))], + depends: [] +) +run_target('bindinate_ges', command: ['sh', '-c', '''bindinate --name=gst-editing-services --regenerate=true --gir=GES-1.0 && mv @0@/sources/gst-editing-services-sharp-api.raw @0@/ges/gst-editing-services-api.raw '''.format( meson.current_source_dir())