2016-11-15 20:46:17 +00:00
|
|
|
wl_sources = [
|
2022-01-04 14:20:41 +00:00
|
|
|
'gstwaylandsink.c'
|
2016-11-15 20:46:17 +00:00
|
|
|
]
|
|
|
|
|
2025-01-13 17:10:31 +00:00
|
|
|
wl_headers = [
|
|
|
|
'gstwaylandsink.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
doc_sources = []
|
|
|
|
foreach s: wl_sources + wl_headers
|
|
|
|
doc_sources += meson.current_source_dir() / s
|
|
|
|
endforeach
|
2016-11-15 20:46:17 +00:00
|
|
|
|
2025-01-13 17:10:31 +00:00
|
|
|
plugin_sources += {
|
|
|
|
'waylandsink': pathsep.join(doc_sources)
|
|
|
|
}
|
|
|
|
|
|
|
|
if use_wayland
|
|
|
|
gstwaylandsink = library('gstwaylandsink',
|
|
|
|
wl_sources,
|
|
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
|
|
include_directories : [configinc],
|
|
|
|
dependencies : [gst_dep, gstvideo_dep, gstwayland_dep],
|
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
|
|
|
plugins += [gstwaylandsink]
|
2016-11-15 20:46:17 +00:00
|
|
|
endif
|