summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBogDan Vatra <bogdan@kde.org>2020-01-08 10:14:24 +0200
committerBogDan Vatra <bogdan@kdab.com>2020-01-08 09:00:27 +0000
commit15734ac5eb5b7b55916aca7b83a85ed8b6c793c1 (patch)
treee4a742f006fee8e6b21acddb685e6f2fbedf63ca
parentcd5f070844c4224e646e30f6edcfb83a7deaa662 (diff)
downloadqt-creator-15734ac5eb5b7b55916aca7b83a85ed8b6c793c1.tar.gz
QBS: Fix template for Android
CppApplication sets usesNativeCode for android which it's needed to compile the C++ part of the application. Change-Id: Ibf787fecd256e4f90c09b8e3061a23419feb526e Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-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 f06fb39824..b22af44529 100644
--- a/share/qtcreator/templates/wizards/projects/qtquickapplication/app.qbs
+++ b/share/qtcreator/templates/wizards/projects/qtquickapplication/app.qbs
@@ -1,6 +1,6 @@
import qbs
-Application {
+CppApplication {
@if "%{UseVirtualKeyboard}" == "true"
Depends { name: "Qt"; submodules: ["quick", "virtualkeyboard"] }
@else