mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
16 lines
410 B
Meson
16 lines
410 B
Meson
wl_sources = [
|
|
'gstwaylandsink.c'
|
|
]
|
|
|
|
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
|