mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
22 lines
543 B
Meson
22 lines
543 B
Meson
|
opus_sources = [
|
||
|
'gstopus.c',
|
||
|
'gstopuscommon.c',
|
||
|
'gstopusdec.c',
|
||
|
'gstopusenc.c',
|
||
|
'gstopusheader.c',
|
||
|
]
|
||
|
|
||
|
opus_dep = dependency('opus', version : '>= 0.9.4', required : false)
|
||
|
|
||
|
if opus_dep.found()
|
||
|
gstopus = library('gstopus',
|
||
|
opus_sources,
|
||
|
c_args : gst_plugins_base_args,
|
||
|
link_args : noseh_link_args,
|
||
|
include_directories: [configinc, libsinc],
|
||
|
dependencies : glib_deps + [pbutils_dep, tag_dep, audio_dep, gst_dep, gst_base_dep, opus_dep, libm],
|
||
|
install : true,
|
||
|
install_dir : plugins_install_dir,
|
||
|
)
|
||
|
endif
|