gstreamer/sys/opensles/meson.build
Seungha Yang b44d2702ca meson: Fix invalid keyword warning
"required" keyword is not a valid argument for has_header()

WARNING: Passed invalid keyword argument "required".
WARNING: This will become a hard error in the future.
2018-11-13 09:02:21 +00:00

30 lines
840 B
Meson

opensles_sources = [
'openslescommon.c',
'openslesringbuffer.c',
'openslessink.c',
'openslessrc.c',
'opensles.c',
]
opensles_option = get_option('opensles')
if opensles_option.disabled()
subdir_done()
endif
have_opensles_h = cc.has_header('SLES/OpenSLES.h')
if not have_opensles_h and opensles_option.enabled()
error('opensles plugin enabled but SLES/OpenSLES.h not found')
endif
opensles_dep = cc.find_library('OpenSLES', required : opensles_option)
if have_opensles_h and opensles_dep.found()
gstopensles = library('gstopensles',
opensles_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstaudio_dep, opensles_dep],
install : true,
install_dir : plugins_install_dir)
pkgconfig.generate(gstopensles, install_dir : plugins_pkgconfig_install_dir)
endif