mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
7853700b50
Makes sure their path gets added to the uninstalled environment and makes sure they get included in the docs.
21 lines
574 B
Meson
21 lines
574 B
Meson
lv2_sources = [
|
|
'gstlv2.c',
|
|
'gstlv2filter.c',
|
|
'gstlv2source.c',
|
|
'gstlv2utils.c',
|
|
]
|
|
|
|
lv2_dep = dependency('lilv-0', version : '>= 0.22', required : get_option('lv2'))
|
|
if lv2_dep.found()
|
|
gstlv2 = library('gstlv2',
|
|
lv2_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstaudio_dep, gstbase_dep, lv2_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstlv2, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstlv2]
|
|
endif
|