From c23a1dc2b663b81c0233d0396af9b343c95ba2c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 17 Dec 2018 00:00:11 +0000 Subject: meson: build openal plugin --- ext/openal/meson.build | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ext/openal/meson.build (limited to 'ext/openal') diff --git a/ext/openal/meson.build b/ext/openal/meson.build new file mode 100644 index 000000000..f0840b2a9 --- /dev/null +++ b/ext/openal/meson.build @@ -0,0 +1,13 @@ +openal_dep = dependency('openal', 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], + dependencies: [gstaudio_dep, openal_dep], + install: true, + install_dir: plugins_install_dir, + ) + pkgconfig.generate(gstopenal, install_dir: plugins_pkgconfig_install_dir) +endif -- cgit v1.2.1