gstreamer/subprojects/gst-plugins-good/tests/examples/qt6/meson.build
Matthew Waters 293ad62035 qt6: add qml6glsrc element
Same functionality as qmlglsrc (Qt5) but for Qt6.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3737>
2023-01-28 02:24:09 +00:00

18 lines
405 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')