gstreamer/ext/ofa/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

14 lines
419 B
Meson

ofa_dep = dependency('libofa', version: '>= 0.9.3', required: get_option('ofa'))
if ofa_dep.found()
gstofa = library('gstofa', 'gstofa.c',
c_args: gst_plugins_bad_args,
include_directories: [configinc],
dependencies: [gstaudio_dep, ofa_dep],
install: true,
install_dir: plugins_install_dir,
)
pkgconfig.generate(gstofa, install_dir: plugins_pkgconfig_install_dir)
plugins += [gstofa]
endif