From 15734ac5eb5b7b55916aca7b83a85ed8b6c793c1 Mon Sep 17 00:00:00 2001 From: BogDan Vatra Date: Wed, 8 Jan 2020 10:14:24 +0200 Subject: [PATCH] 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 --- .../templates/wizards/projects/qtquickapplication/app.qbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/templates/wizards/projects/qtquickapplication/app.qbs b/share/qtcreator/templates/wizards/projects/qtquickapplication/app.qbs index f06fb39824b..b22af44529d 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