2016-08-12 15:51:45 +00:00
|
|
|
kate_sources = [
|
|
|
|
'gstkate.c',
|
2021-02-17 17:38:16 +00:00
|
|
|
'gstkateelement.c',
|
2016-08-12 15:51:45 +00:00
|
|
|
'gstkatedec.c',
|
|
|
|
'gstkateenc.c',
|
|
|
|
'gstkateparse.c',
|
|
|
|
'gstkatetag.c',
|
|
|
|
'gstkateutil.c',
|
|
|
|
'gstkatespu.c',
|
|
|
|
]
|
|
|
|
|
2018-07-27 13:29:23 +00:00
|
|
|
kate_dep = dependency('kate', version : '>=0.1.7', required : get_option('kate'))
|
2016-08-12 15:51:45 +00:00
|
|
|
# Not used
|
2018-07-27 13:29:23 +00:00
|
|
|
#tiger_dep = dependency('tiger', version : '>=0.3.2', required : get_option('kate'))
|
2016-08-12 15:51:45 +00:00
|
|
|
|
|
|
|
if kate_dep.found()
|
|
|
|
gstkate = library('gstkate',
|
|
|
|
kate_sources,
|
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
link_args : noseh_link_args,
|
2017-03-24 19:43:07 +00:00
|
|
|
include_directories : [configinc, libsinc],
|
2016-08-12 15:51:45 +00:00
|
|
|
dependencies : [gstbase_dep, gstvideo_dep, gsttag_dep, kate_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir)
|
2018-04-24 18:05:30 +00:00
|
|
|
pkgconfig.generate(gstkate, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstkate]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|