aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@pelagicore.com>2019-05-31 16:55:13 +0200
committerDominik Holland <dominik.holland@pelagicore.com>2019-05-31 15:34:17 +0000
commitd60be1f303a483f3a409b4a0fd2fd7d09e1f39a5 (patch)
tree0e2a0a460025bc12d00a7b50fdd8df42646657fe /plugins
parentdefafd6aaa5559f4ae743e6460c64b1ac0db7b74 (diff)
[build-system] EXTRA_FILES always need to be absolute paths
Don't try to be smart when iterating over EXTRA_FILES and detect where it is located. All files in EXTRA_FILES need to be absolute paths now. Change-Id: I0b490a253ac0f947d87f9ae0fe304b0b0681c941 Fixes: AUTOSUITE-998 Reviewed-by: Robert Griebl <robert.griebl@pelagicore.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/controls/controls.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/controls/controls.pro b/plugins/controls/controls.pro
index a2f4d98e..a4868533 100644
--- a/plugins/controls/controls.pro
+++ b/plugins/controls/controls.pro
@@ -4,7 +4,7 @@ QT += qml quick
QT += core-private gui-private qml-private quick-private quickcontrols2-private quicktemplates2-private
uri = controls
-EXTRA_FILES += $$files(*.qml, true)
+EXTRA_FILES += $$files($$PWD/*.qml, true)
load(qmlplugin)