2016-11-14 17:45:05 +00:00
|
|
|
fbdevsink_sources = [
|
|
|
|
'gstfbdevsink.c',
|
|
|
|
]
|
|
|
|
|
2018-07-27 13:29:23 +00:00
|
|
|
if get_option('fbdev').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
|
|
|
have_fb_h = cc.has_header('linux/fb.h')
|
|
|
|
if not have_fb_h and get_option('fbdev').enabled()
|
|
|
|
error('fbdev plugin enabled but fb.h not found')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if have_fb_h
|
2016-11-14 17:45:05 +00:00
|
|
|
gstfbdevsink = library('gstfbdevsink',
|
|
|
|
fbdevsink_sources,
|
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gstbase_dep, gstvideo_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstfbdevsink]
|
2016-11-14 17:45:05 +00:00
|
|
|
endif
|