mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
7853700b50
Makes sure their path gets added to the uninstalled environment and makes sure they get included in the docs.
13 lines
419 B
Meson
13 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
|