gstreamer/subprojects/gst-plugins-bad/sys/fbdev/meson.build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
547 B
Meson
Raw Normal View History

2016-11-14 17:45:05 +00:00
fbdevsink_sources = [
'gstfbdevsink.c',
]
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