diff options
author | Daniel Teske <daniel.teske@nokia.com> | 2012-04-24 12:35:34 +0200 |
---|---|---|
committer | Daniel Teske <daniel.teske@nokia.com> | 2012-04-24 13:46:31 +0200 |
commit | ab96b851763f506e6168e1eb4e50273e95bf3c49 (patch) | |
tree | 29ec607929ed27639ed6b5fd8bffd997783a8a9b /src/plugins/android/android.pro | |
parent | 6aaed915e42bc246f9975b04c386425b2d55f5ae (diff) | |
download | qt-creator-ab96b851763f506e6168e1eb4e50273e95bf3c49.tar.gz |
Mark Android plugin as experimental
That disables it by default, pass ANDROID_ENABLE to qmake -r to change the
default. The plugin is always built, thus it can be enabled/disabled in the
settings.
Change-Id: I29894f0fe1672a1920b43d38999717ce8b48868f
Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/android/android.pro')
-rw-r--r-- | src/plugins/android/android.pro | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/android/android.pro b/src/plugins/android/android.pro index d7168d8746..c841fdbae0 100644 --- a/src/plugins/android/android.pro +++ b/src/plugins/android/android.pro @@ -4,6 +4,9 @@ TARGET = Android include(../../qtcreatorplugin.pri) include(android_dependencies.pri) +isEmpty(ANDROID_ENABLE):ANDROID_EXPERIMENTAL_STR="true" +else:ANDROID_EXPERIMENTAL_STR="false" + QT += xml network HEADERS += \ @@ -73,5 +76,3 @@ FORMS += \ RESOURCES = android.qrc DEFINES += QT_NO_CAST_TO_ASCII DEFINES += ANDROID_LIBRARY - - |