mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +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
19 lines
513 B
Meson
19 lines
513 B
Meson
bz2_sources = [
|
|
'gstbz2.c',
|
|
'gstbz2dec.c',
|
|
'gstbz2enc.c',
|
|
]
|
|
|
|
bz2_dep = cc.find_library('bz2', required : get_option('bz2'))
|
|
|
|
if bz2_dep.found() and cc.has_header_symbol('bzlib.h', 'BZ2_bzlibVersion')
|
|
gstbz2 = library('gstbz2',
|
|
bz2_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstvideo_dep, bz2_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstbz2, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|