mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
eb2dae8fd6
- libgstgtksink.so -> libgstgtk.so - libgstteletextdec.so -> libgstteletex.so - libgstcamerabin2.so -> libgstcamerabin.so - libgstonvif.so -> libgstrtponvif.so (meson only) - sdp -> sdpelem (avoid clash with libgstsdp) - gstsiren -> siren - libgstkmssink.so -> libgstkms.so https://bugzilla.gnome.org/show_bug.cgi?id=779344
12 lines
378 B
Meson
12 lines
378 B
Meson
fluidsynth_dep = dependency('fluidsynth', version : '>= 1.0', required : false)
|
|
|
|
if fluidsynth_dep.found()
|
|
gstfluidsynth = library('gstfluidsynthmidi',
|
|
'gstfluiddec.c',
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstaudio_dep, gst_dep, fluidsynth_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
endif
|