mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
closedcaption: add meson build files
This commit is contained in:
parent
2550718f59
commit
483892d16a
2 changed files with 15 additions and 0 deletions
14
ext/closedcaption/meson.build
Normal file
14
ext/closedcaption/meson.build
Normal file
|
@ -0,0 +1,14 @@
|
|||
pangocairo_dep = dependency('pangocairo', version : '>= 1.22.0', required : false)
|
||||
|
||||
if pangocairo_dep.found()
|
||||
gstclosedcaption = library('gstclosedcaption',
|
||||
'gstccextractor.c', 'gstclosedcaption.c',
|
||||
c_args : gst_plugins_bad_args,
|
||||
link_args : noseh_link_args,
|
||||
include_directories : [configinc],
|
||||
dependencies : [gstvideo_dep, pangocairo_dep],
|
||||
install : true,
|
||||
install_dir : plugins_install_dir,
|
||||
)
|
||||
pkgconfig.generate(gstclosedcaption, install_dir : plugins_pkgconfig_install_dir)
|
||||
endif
|
|
@ -3,6 +3,7 @@ subdir('aom')
|
|||
subdir('bs2b')
|
||||
subdir('bz2')
|
||||
subdir('chromaprint')
|
||||
subdir('closedcaption')
|
||||
subdir('curl')
|
||||
#subdir('daala')
|
||||
subdir('dash')
|
||||
|
|
Loading…
Reference in a new issue