aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/templates
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-06-26 16:38:41 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2019-06-27 09:00:35 +0000
commit375ec4c51b0732d8f91d451590ab59156a8f1c84 (patch)
tree9605d489eb2cc8b5ff581f1dacff8509ef749ed9 /share/qtcreator/templates
parent6288e03264129ff6e57211bf86d7ff7b98d95726 (diff)
Wizards: Fix qbs project template for QtQuick app
Change-Id: Iffc9dad352d78f54557f45b36687c543935853dd Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'share/qtcreator/templates')
-rw-r--r--share/qtcreator/templates/wizards/projects/qtquickapplication/app.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qtcreator/templates/wizards/projects/qtquickapplication/app.qbs b/share/qtcreator/templates/wizards/projects/qtquickapplication/app.qbs
index d86ee9b454..27a8b66c3c 100644
--- a/share/qtcreator/templates/wizards/projects/qtquickapplication/app.qbs
+++ b/share/qtcreator/templates/wizards/projects/qtquickapplication/app.qbs
@@ -2,7 +2,7 @@ import qbs
Application {
@if "%{UseVirtualKeyboard}" == "true"
- Depends { name: "Qt"; submodules: "quick", "virtualkeyboard" }
+ Depends { name: "Qt"; submodules: ["quick", "virtualkeyboard"] }
@else
Depends { name: "Qt.quick" }
@endif