mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
eadedc68f8
GL dependency detection is still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
22 lines
645 B
Meson
22 lines
645 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'))
|
|
|
|
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)
|
|
endif
|