mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-02 22:46:35 +00:00
18972fc942
- Based heavily on the existing Qt5 integration however: - The sharing of OpenGL resources is slightly different - The integration with the scengraph is a bit different - Wayland, XCB and KMS have been smoke tested. Android, MacOS/iOS, Windows may or may not work. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3281>
17 lines
388 B
Meson
17 lines
388 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')
|