mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
33c0c7c33d
Otherwise it doesn't appear in the GstPluginsPath.json and thus is not listed in gst-build's uninstalled shell's $GST_PLUGIN_PATH.
13 lines
469 B
Meson
13 lines
469 B
Meson
aom_dep = dependency('aom', required: get_option('aom'))
|
|
if aom_dep.found()
|
|
gstaom = library('gstaom',
|
|
['gstaom.c', 'gstav1enc.c', 'gstav1dec.c', 'gstav1utils.c'],
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstpbutils_dep, gstvideo_dep, aom_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstaom, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstaom]
|
|
endif
|