2018-07-27 13:29:23 +00:00
|
|
|
fluidsynth_dep = dependency('fluidsynth', version : '>= 1.0', required : get_option('fluidsynth'))
|
2016-08-12 15:51:45 +00:00
|
|
|
|
|
|
|
if fluidsynth_dep.found()
|
2017-03-04 16:03:53 +00:00
|
|
|
gstfluidsynth = library('gstfluidsynthmidi',
|
2016-08-12 15:51:45 +00:00
|
|
|
'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,
|
|
|
|
)
|
2018-04-24 18:05:30 +00:00
|
|
|
pkgconfig.generate(gstfluidsynth, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstfluidsynth]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|