summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2018-06-29 10:40:04 +0200
committerEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2018-06-29 09:13:42 +0000
commit255182d58a4f5209e84bc0090e38cc22316aa083 (patch)
tree8770bd517ed4cdc3f08b5b0c9333c51d81e9e2a1
parent139640231e6df74bb0c80e9c21346f0a0add8efa (diff)
Wasm: Install all files in the application shell
These missing files would make it impossible to build applications without access to the Qt sources, and therefor also to do an out-of-source build of Qt. Change-Id: I1eae84268ca522108146f31601d2889fd89e8cf7 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
-rw-r--r--src/plugins/platforms/html5/html5.pro9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/plugins/platforms/html5/html5.pro b/src/plugins/platforms/html5/html5.pro
index 47b38bfbd8..6072f1e1f8 100644
--- a/src/plugins/platforms/html5/html5.pro
+++ b/src/plugins/platforms/html5/html5.pro
@@ -46,9 +46,12 @@ OTHER_FILES += \
html5_shell.html \
qtloader.js
-shell_file.path = $$[QT_INSTALL_PLUGINS]/platforms
-shell_file.files = html5_shell.html
-INSTALLS += shell_file
+shell_files.path = $$[QT_INSTALL_PLUGINS]/platforms
+shell_files.files = html5_shell.html \
+ qtloader.js \
+ qtlogo.svg
+
+INSTALLS += shell_files
PLUGIN_TYPE = platforms
PLUGIN_CLASS_NAME = QHtml5IntegrationPlugin