From ee3a0ecb7531073a7c1ba3b08cfd9ace61ba569b Mon Sep 17 00:00:00 2001 From: Assam Boudjelthia Date: Mon, 5 Oct 2020 17:20:41 +0300 Subject: [PATCH] Android: add qmake variables to completion assistant Add Android specific qmake variables to profile completion assistant. Change-Id: I1c4c25bfa7481fed511f48360e93fb5996b42401 Reviewed-by: Alessandro Portale --- .../profilecompletionassist.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/plugins/qmakeprojectmanager/profilecompletionassist.cpp b/src/plugins/qmakeprojectmanager/profilecompletionassist.cpp index ec405f67f7c..c070f2aea6e 100644 --- a/src/plugins/qmakeprojectmanager/profilecompletionassist.cpp +++ b/src/plugins/qmakeprojectmanager/profilecompletionassist.cpp @@ -31,6 +31,23 @@ const TextEditor::Keywords &QmakeProjectManager::Internal::qmakeKeywords() { static TextEditor::Keywords keywords( QStringList{ // variables + "ANDROID_ABIS", + "ANDROID_API_VERSION", + "ANDROID_APPLICATION_ARGUMENTS", + "ANDROID_BUNDLED_JAR_DEPENDENCIES", + "ANDROID_DEPLOYMENT_DEPENDENCIES", + "ANDROID_DEPLOYMENT_SETTINGS_FILE", + "ANDROID_EXTRA_LIBS", + "ANDROID_EXTRA_PLUGINS", + "ANDROID_FEATURES", + "ANDROID_LIB_DEPENDENCIES", + "ANDROID_MIN_SDK_VERSION", + "ANDROID_PACKAGE_SOURCE_DIR", + "ANDROID_PERMISSIONS", + "ANDROID_TARGET_SDK_VERSION", + "ANDROID_TARGET_ARCH", + "ANDROID_VERSION_CODE", + "ANDROID_VERSION_NAME", "ARGC", "ARGS", "BUILDS",