gstreamer/subprojects/gst-plugins-good/tests/examples/qt6/meson.build
Matthew Waters 3f4bfa097a qml6: add a mixer element
Can take multiple input streams and a qml scene and layout the input
videos inside the qml scene.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4609>
2023-05-19 01:48:57 +00:00

20 lines
445 B
Meson

if qt6_option.disabled()
subdir_done()
endif
# We already did all the checks when building the qt6 plugin
if not qt6qml_dep.found()
subdir_done()
endif
qt6qml_example_deps = dependency('qt6', modules : ['Core', 'Gui', 'Widgets', 'Qml', 'Quick'],
required: get_option('examples'))
if not qt6qml_example_deps.found()
subdir_done()
endif
subdir('qmlsink')
subdir('qmlsrc')
subdir('qmloverlay')
subdir('qmlmixer')