mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 17:39:47 +00:00
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
|