mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 20:42:30 +00:00
87d4374655
Would get "Tried to create target "qt5-qmlsink_qrc", but a target of that name already exists." with older meson versions. Work around that by renaming the qrc file. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/633>
10 lines
327 B
Meson
10 lines
327 B
Meson
sources = [
|
|
'main.cpp',
|
|
]
|
|
|
|
qt_preprocessed = qt5_mod.preprocess(qresources : 'qmlsink-dyn-added.qrc')
|
|
executable('qmlsink-dynamically-added', sources, qt_preprocessed,
|
|
dependencies : [gst_dep, gstgl_dep, qt5qml_example_deps],
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc],
|
|
install: false)
|