mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
38 lines
1,012 B
Meson
38 lines
1,012 B
Meson
ladspa_sources = [
|
|
'gstladspa.c',
|
|
'gstladspafilter.c',
|
|
'gstladspasource.c',
|
|
'gstladspasink.c',
|
|
'gstladspautils.c',
|
|
]
|
|
|
|
ladspa_cargs = []
|
|
|
|
if get_option('ladspa').disabled()
|
|
subdir_done()
|
|
endif
|
|
|
|
# This is an optional dep, but we make it optional only in auto mode
|
|
lrdf_dep = dependency('lrdf', required : get_option('ladspa'))
|
|
if lrdf_dep.found()
|
|
ladspa_cargs = ['-DHAVE_LRDF']
|
|
endif
|
|
|
|
have_ladspa_h = cc.has_header('ladspa.h')
|
|
if not have_ladspa_h and get_option('ladspa').enabled()
|
|
error('ladspa plugin is enabled but ladspa.h not found')
|
|
endif
|
|
|
|
if have_ladspa_h
|
|
gstladspa = library('gstladspa',
|
|
ladspa_sources,
|
|
c_args : gst_plugins_bad_args + ladspa_cargs,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstaudio_dep, gstbase_dep, gmodule_dep, lrdf_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstladspa, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstladspa]
|
|
endif
|