gstreamer/ext/pango/meson.build
Xavier Claessens c66e276550 pango: Add fallback dependency
When we'll depend on Meson >=0.55 this can be replaced by [provide]
section in gst-build's pango.wrap file. The dependency variable name can
also be dropped when pango is updated to use override_dependency:
https://gitlab.gnome.org/GNOME/pango/-/merge_requests/250

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/844>
2020-10-06 05:44:25 +00:00

25 lines
751 B
Meson

pango_sources = [
'gstbasetextoverlay.c',
'gstclockoverlay.c',
'gsttextoverlay.c',
'gsttextrender.c',
'gsttimeoverlay.c',
]
pango_dep = dependency('pangocairo', version : '>=1.22.0', required : get_option('pango'),
fallback: ['pango', 'libpangocairo_dep'],
default_options: ['cairo=enabled'])
if pango_dep.found()
gstpango = library('gstpango',
pango_sources,
c_args : gst_plugins_base_args,
link_args : noseh_link_args,
include_directories: [configinc, libsinc],
dependencies : glib_deps + [pango_dep, video_dep, gst_dep, gst_base_dep, libm],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstpango, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstpango]
endif