2018-07-27 13:29:23 +00:00
|
|
|
directfb_dep = dependency('directfb', version : '>= 0.9.24', required : get_option('directfb'))
|
2016-08-12 15:51:45 +00:00
|
|
|
|
|
|
|
if directfb_dep.found()
|
|
|
|
gstdirectfb = library('gstdirectfb',
|
|
|
|
'dfbvideosink.c',
|
2020-07-25 18:36:10 +00:00
|
|
|
c_args : gst_plugins_bad_args + cc.get_supported_arguments('-Wno-redundant-decls'),
|
2016-08-12 15:51:45 +00:00
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gstvideo_dep, directfb_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-04-24 18:05:30 +00:00
|
|
|
pkgconfig.generate(gstdirectfb, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstdirectfb]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|