mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 06:16:36 +00:00
8f807477eb
Checks for GL, Qt5, and C++ are still automagic. FIXMEs have been added for these so they can be fixed later. https://bugzilla.gnome.org/show_bug.cgi?id=795107
20 lines
593 B
Meson
20 lines
593 B
Meson
speex_sources = [
|
|
'gstspeex.c',
|
|
'gstspeexdec.c',
|
|
'gstspeexenc.c',
|
|
]
|
|
|
|
speex_dep = dependency('speex', version : '>=1.1.6', required : get_option('speex'))
|
|
|
|
if speex_dep.found()
|
|
gstspeex = library('gstspeex',
|
|
speex_sources,
|
|
c_args : gst_plugins_good_args + ['-DGST_USE_UNSTABLE_API'],
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gsttag_dep, gstaudio_dep, speex_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstspeex, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|