gstreamer/subprojects/gst-plugins-bad/tests/examples/gtk/meson.build
George Kiagiadakis 7e18fc1b1f Add new gtkwaylandsink element
This is based on gtksink, but similar to waylandsink uses Wayland APIs
directly instead of rendering with Gtk/Cairo primitives.

Note that the long term plan is to move this into the existing extension
in `-good`, which requires the Wayland library to move the as well.

For this reason several files like `gstgtkutils.*` and `gtkgstbasewidget.*`
are straight copies and should be kept in sync.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1515>
2022-08-02 16:34:13 +00:00

10 lines
293 B
Meson

if gtk_dep.found() and gtk_wayland_dep.found() and use_wayland
executable('gtkwaylandsink',
'gtkwaylandsink.c',
extra_files: ['window.ui'],
install: false,
include_directories : [configinc],
dependencies : [gtk_dep, gst_dep],
c_args : gst_plugins_bad_args,
)
endif