summaryrefslogtreecommitdiff
path: root/tests/qml/resources
diff options
context:
space:
mode:
Diffstat (limited to 'tests/qml/resources')
-rw-r--r--tests/qml/resources/am-config.yaml5
-rw-r--r--tests/qml/resources/apps/app1/app1.pro4
-rw-r--r--tests/qml/resources/apps/app1/info.yaml5
-rw-r--r--tests/qml/resources/apps/app2/app2.pro4
4 files changed, 14 insertions, 4 deletions
diff --git a/tests/qml/resources/am-config.yaml b/tests/qml/resources/am-config.yaml
index e204c0f2..5745dd2b 100644
--- a/tests/qml/resources/am-config.yaml
+++ b/tests/qml/resources/am-config.yaml
@@ -7,5 +7,6 @@ applications:
ui:
importPaths: "qrc:///qml"
- resources: [ "${CONFIG_PWD}/systemuifile.rcc",
- "${CONFIG_PWD}/libsystemuiplugin.so" ]
+ resources:
+ - "${CONFIG_PWD}/systemuifile.rcc"
+ - "${CONFIG_PWD}/systemuiplugin" # libsystemuiplugin.so would only work on Linux
diff --git a/tests/qml/resources/apps/app1/app1.pro b/tests/qml/resources/apps/app1/app1.pro
index b8a1fcac..cbbb4758 100644
--- a/tests/qml/resources/apps/app1/app1.pro
+++ b/tests/qml/resources/apps/app1/app1.pro
@@ -5,3 +5,7 @@ RESOURCES = app1plugin.qrc
RESOURCE_SOURCE = app1file.qrc
load(generate-resource)
+
+OTHER_FILES += \
+ info.yaml \
+ icon.png
diff --git a/tests/qml/resources/apps/app1/info.yaml b/tests/qml/resources/apps/app1/info.yaml
index ebf3e533..a5287f2c 100644
--- a/tests/qml/resources/apps/app1/info.yaml
+++ b/tests/qml/resources/apps/app1/info.yaml
@@ -12,5 +12,6 @@ applications:
runtime: 'qml'
runtimeParameters:
importPaths: "qrc:///app1/qml"
- resources: [ "app1file.rcc",
- "libapp1plugin.so" ]
+ resources:
+ - app1file.rcc
+ - app1plugin # libapp1plugin.so would only work on Linux
diff --git a/tests/qml/resources/apps/app2/app2.pro b/tests/qml/resources/apps/app2/app2.pro
index b3ce1bd0..7a5190df 100644
--- a/tests/qml/resources/apps/app2/app2.pro
+++ b/tests/qml/resources/apps/app2/app2.pro
@@ -2,3 +2,7 @@ TEMPLATE = aux
RESOURCE_SOURCE = app2.qrc
load(generate-resource)
+
+OTHER_FILES += \
+ info.yaml \
+ icon.png