mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-14 02:05:39 +00:00
28 lines
597 B
Meson
28 lines
597 B
Meson
wl_sources = [
|
|
'gstwaylandsink.c'
|
|
]
|
|
|
|
wl_headers = [
|
|
'gstwaylandsink.h',
|
|
]
|
|
|
|
doc_sources = []
|
|
foreach s: wl_sources + wl_headers
|
|
doc_sources += meson.current_source_dir() / s
|
|
endforeach
|
|
|
|
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]
|
|
endif
|