aboutsummaryrefslogtreecommitdiffstats
path: root/src/app
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2017-10-04 16:42:07 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2017-10-05 09:27:57 +0000
commite62cb46a6bed9284dc026f232563ecba373239d9 (patch)
tree936c095e3586d42ed158a59a831f7d92115a0cf0 /src/app
parentd3706fd2f87d338632901abdec0b928922d9a86e (diff)
Fix help output for qbs-setup-android
We forgot to update the help text when we got dropped the "one profile per architecture" approach. Change-Id: I81d7634e6228e4058d97031fc5bdf2a997f35429 Reviewed-by: Jake Petroules <jake.petroules@qt.io> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/app')
-rw-r--r--src/app/qbs-setup-android/commandlineparser.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/app/qbs-setup-android/commandlineparser.cpp b/src/app/qbs-setup-android/commandlineparser.cpp
index fca96eac1..f5a5c3aa3 100644
--- a/src/app/qbs-setup-android/commandlineparser.cpp
+++ b/src/app/qbs-setup-android/commandlineparser.cpp
@@ -120,12 +120,10 @@ QString CommandLineParser::usageString() const
"<profile name>\n")
.arg(m_command, settingsDirOption(), ndkDirOption(), sdkDirOption(), qtSdkDirOption());
s += Tr::tr(" %1 %2|%3\n").arg(m_command, helpOptionShort(), helpOptionLong());
- s += Tr::tr("If an NDK path is given, additional profiles will be created for each "
- "architecture supported by the NDK.\n"
- "Their names will be of the form <main profile name>_<arch name>.\n");
- s += Tr::tr("If a Qt path is given, these additional profiles will be suitable for building "
- "Qt binaries for the respective architecture, if the Qt installation has "
- "support for it.\n");
+ s += Tr::tr("If an NDK path is given, the profile will be suitable for use with Android "
+ "projects that contain native C/C++ code.\n");
+ s += Tr::tr("If a Qt path is also given, the profile will be suitable for developing "
+ "Qt applications for Android.\n");
return s;
}