mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
b55dfb5313
The only plugins remaining are those that haven't been ported to Meson yet, and msdk. Also, the tests are still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
21 lines
596 B
Meson
21 lines
596 B
Meson
opus_sources = [
|
|
'gstopus.c',
|
|
'gstopusheader.c',
|
|
'gstopusparse.c',
|
|
]
|
|
|
|
opus_dep = dependency('opus', version : '>= 0.9.4', required : get_option('opus'))
|
|
|
|
if opus_dep.found()
|
|
gstopus = library('gstopusparse',
|
|
opus_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstrtp_dep, gstpbutils_dep, gstaudio_dep,
|
|
gsttag_dep, opus_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstopus, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|