mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
b55dfb5313
The only plugins remaining are those that haven't been ported to Meson yet, and msdk. Also, the tests are still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
18 lines
489 B
Meson
18 lines
489 B
Meson
de265_sources = [
|
|
'gstlibde265.c',
|
|
'libde265-dec.c',
|
|
]
|
|
|
|
de265_dep = dependency('libde265', version : '>= 0.9', required : get_option('libde265'))
|
|
|
|
if de265_dep.found()
|
|
gstde265 = library('gstde265',
|
|
de265_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstvideo_dep, de265_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstde265, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|