gstreamer/subprojects/gst-plugins-good/tests/examples/qt6/qmlmixer/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

11 lines
335 B
Meson

sources = [
'main.cpp',
]
qt_preprocessed = qt6_mod.preprocess(qresources : 'qmlmixer.qrc')
executable('qml6glmixer', 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)