gstreamer/ext/openal/meson.build
Tim-Philipp Müller 7853700b50 meson: add more plugins to plugins list
Makes sure their path gets added to the uninstalled environment
and makes sure they get included in the docs.
2019-05-30 20:41:57 +02:00

15 lines
517 B
Meson

openal_dep = dependency('openal', method: 'pkg-config', version: '>= 1.14', required: get_option('openal'))
if openal_dep.found()
gstopenal = library('gstopenal',
'gstopenal.c', 'gstopenalsink.c', 'gstopenalsrc.c',
c_args: gst_plugins_bad_args,
include_directories: [configinc, libsinc],
dependencies: [gstaudio_dep, openal_dep],
install: true,
install_dir: plugins_install_dir,
)
pkgconfig.generate(gstopenal, install_dir: plugins_pkgconfig_install_dir)
plugins += [gstopenal]
endif