2018-12-05 13:10:11 +00:00
|
|
|
|
|
|
|
if not gstgl_dep.found()
|
|
|
|
if get_option('wpe').enabled()
|
|
|
|
error('wpe plugin enabled but GL support was not detected')
|
|
|
|
endif
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2019-03-28 18:27:28 +00:00
|
|
|
wpe_dep = dependency('wpe-webkit-1.0', version : '>= 2.24', required : get_option('wpe'))
|
|
|
|
wpe_fdo_dep = dependency('wpebackend-fdo-1.0', required : get_option('wpe'))
|
2018-12-05 13:10:11 +00:00
|
|
|
egl_dep = dependency('egl', required : get_option('wpe'))
|
|
|
|
xkbcommon_dep = dependency('xkbcommon', version : '>= 0.8', required : get_option('wpe'))
|
2020-02-08 12:05:03 +00:00
|
|
|
wl_server_dep = dependency('wayland-server', required : get_option('wpe'))
|
2018-12-05 13:10:11 +00:00
|
|
|
|
|
|
|
if not wpe_dep.found() or not wpe_fdo_dep.found() or not egl_dep.found() or not xkbcommon_dep.found()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
|
|
|
gstwpe = library('gstwpe',
|
|
|
|
['WPEThreadedView.cpp', 'gstwpesrc.cpp'],
|
2020-02-08 12:05:03 +00:00
|
|
|
dependencies : [egl_dep, wpe_dep, wpe_fdo_dep, gstvideo_dep, gstbase_dep, gstgl_dep, xkbcommon_dep, wl_server_dep],
|
2018-12-05 13:10:11 +00:00
|
|
|
cpp_args : gst_plugins_bad_args + ['-DHAVE_CONFIG_H=1'],
|
|
|
|
include_directories : [configinc],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir)
|
|
|
|
pkgconfig.generate(gstwpe, install_dir : plugins_pkgconfig_install_dir)
|
2019-05-29 10:28:00 +00:00
|
|
|
plugins += [gstwpe]
|