mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 23:22:54 +00:00
examples: qmlsink: rename qrc file to avoid naming conflicts with older meson versions
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>
This commit is contained in:
parent
c54aa053d1
commit
87d4374655
3 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ sources = [
|
|||
'main.cpp',
|
||||
]
|
||||
|
||||
qt_preprocessed = qt5_mod.preprocess(qresources : 'qmlsink.qrc')
|
||||
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,
|
||||
|
|
|
@ -14,7 +14,7 @@ INCLUDEPATH += ../lib
|
|||
|
||||
SOURCES += main.cpp
|
||||
|
||||
RESOURCES += qmlsink.qrc
|
||||
RESOURCES += qmlsink-dyn-added.qrc
|
||||
|
||||
# Additional import path used to resolve QML modules in Qt Creator's code model
|
||||
QML_IMPORT_PATH =
|
||||
|
|
Loading…
Reference in a new issue