summaryrefslogtreecommitdiff
path: root/ext/ttml/meson.build
blob: a62fa283e0d88acf3b047727262528a318c0d34e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
libxml_dep = dependency('libxml-2.0', version : '>= 2.9.2', required : get_option('ttml'))
pango_dep = dependency('pango', required : get_option('ttml'))
cairo_dep = dependency('cairo', required : get_option('ttml'))
pangocairo_dep = dependency('pangocairo', required : get_option('ttml'))

if libxml_dep.found() and pango_dep.found() and cairo_dep.found() and pangocairo_dep.found()
  gstttmlsubs = library('gstttmlsubs',
    ['subtitle.c',
     'subtitlemeta.c',
     'gstttmlparse.c',
     'ttmlparse.c',
     'gstttmlrender.c',
     'gstttmlplugin.c'],
    c_args : gst_plugins_bad_args,
    include_directories : [configinc],
    dependencies : [gstvideo_dep, libxml_dep, pango_dep, cairo_dep, pangocairo_dep, libm],
    install : true,
    install_dir : plugins_install_dir,
  )
  pkgconfig.generate(gstttmlsubs, install_dir : plugins_pkgconfig_install_dir)
endif