mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +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>
12 lines
332 B
Meson
12 lines
332 B
Meson
sources = [
|
|
'main.cpp',
|
|
]
|
|
|
|
|
|
qt_preprocessed = qt6_mod.preprocess(qresources : 'qmlsink.qrc')
|
|
executable('qml6sink', sources, qt_preprocessed,
|
|
dependencies : [gst_dep, qt6qml_example_deps],
|
|
override_options : ['cpp_std=c++17'],
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc],
|
|
install: false)
|