blob: 355411c01f6b3cf29e4bf31c988cfc207f4eb3ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
aom_dep = dependency('aom', required: get_option('aom'))
if aom_dep.found()
gstaom = library('gstaom',
['gstaom.c', 'gstav1enc.c', 'gstav1dec.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)
endif
|