mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-23 06:26:23 +00:00
meson: Enable ladspa plugins compilation
This commit is contained in:
parent
fbd9a62504
commit
60079ef3d2
2 changed files with 21 additions and 1 deletions
20
ext/ladspa/meson.build
Normal file
20
ext/ladspa/meson.build
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
ladspa_sources = [
|
||||||
|
'gstladspa.c',
|
||||||
|
'gstladspafilter.c',
|
||||||
|
'gstladspasource.c',
|
||||||
|
'gstladspasink.c',
|
||||||
|
'gstladspautils.c',
|
||||||
|
]
|
||||||
|
|
||||||
|
ladspa_dep = dependency('lrdf', required : false)
|
||||||
|
if ladspa_dep.found()
|
||||||
|
gstrsvg = library('gstladspa',
|
||||||
|
ladspa_sources,
|
||||||
|
c_args : gst_plugins_bad_args,
|
||||||
|
link_args : noseh_link_args,
|
||||||
|
include_directories : [configinc, libsinc],
|
||||||
|
dependencies : [gstaudio_dep, gstbase_dep, gmodule_dep, ladspa_dep, mathlib],
|
||||||
|
install : true,
|
||||||
|
install_dir : plugins_install_dir,
|
||||||
|
)
|
||||||
|
endif
|
|
@ -22,7 +22,7 @@ subdir('gtk')
|
||||||
subdir('hls')
|
subdir('hls')
|
||||||
subdir('iqa')
|
subdir('iqa')
|
||||||
subdir('kate')
|
subdir('kate')
|
||||||
#subdir('ladspa')
|
subdir('ladspa')
|
||||||
subdir('libde265')
|
subdir('libde265')
|
||||||
subdir('libmms')
|
subdir('libmms')
|
||||||
subdir('lv2')
|
subdir('lv2')
|
||||||
|
|
Loading…
Reference in a new issue