aboutsummaryrefslogtreecommitdiff
path: root/toolchain/Android.cmake
diff options
context:
space:
mode:
authorAleix Pol <aleixpol@kde.org>2016-08-24 04:03:39 +0200
committerAleix Pol <aleixpol@kde.org>2016-08-24 04:03:39 +0200
commitf55064ab1414e373bbe29a9f797612ea1d047e7a (patch)
tree80f212f4cccbb4307be98fbcac97e7420322ca92 /toolchain/Android.cmake
parent47d580f9de23ef1ef5e71f054ea893b23702e097 (diff)
downloadextra-cmake-modules-f55064ab1414e373bbe29a9f797612ea1d047e7a.tar.gz
extra-cmake-modules-f55064ab1414e373bbe29a9f797612ea1d047e7a.tar.bz2
Document ARGS variable in the create-apk-* targets
Explains how to install and sign apks REVIEW: 128634
Diffstat (limited to 'toolchain/Android.cmake')
-rw-r--r--toolchain/Android.cmake11
1 files changed, 11 insertions, 0 deletions
diff --git a/toolchain/Android.cmake b/toolchain/Android.cmake
index 20e65f87..ce9043c9 100644
--- a/toolchain/Android.cmake
+++ b/toolchain/Android.cmake
@@ -73,6 +73,17 @@
# make create-apk-myapp
#
# The APK would then be found in ``myapp_build_apk/bin`` in the build directory.
+#
+# The create-apk-myapp target will be able to take an ARGS parameter with further
+# arguments for androiddeployqt. For example, one can use::
+#
+# make create-apk-myapp ARGS="--install"
+#
+# To install the apk to test. To generate a signed apk, one can do it with the
+# following syntax::
+# make create-apk-myapp ARGS="--sign ~/my.keystore alias_name"
+#
+# See Android documentation on how to create a keystore to use
# =============================================================================
# Copyright 2014 Aleix Pol i Gonzalez <aleixpol@kde.org>