aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/android/androidplugin.cpp
diff options
context:
space:
mode:
authorDaniel Teske <[email protected]>2014-07-04 14:28:55 +0200
committerDaniel Teske <[email protected]>2014-07-21 12:41:21 +0200
commit4657ac7452662d19823412e82d599bf4079a3c4d (patch)
tree0ea7a43c230a51ef349fcc9520d5e6499b3674a6 /src/plugins/android/androidplugin.cpp
parent6a4c47b1768492fb2839438b42b7e0e411925d72 (diff)
AndroidRunConfigurations: Split up into general and qmake specific parts
The plan is to eventually move the qmake specific class into the qmake plugin. Change-Id: I5653c45ed88b1be296f4963ab4117bbfa791fb85 Reviewed-by: BogDan Vatra <[email protected]>
Diffstat (limited to 'src/plugins/android/androidplugin.cpp')
-rw-r--r--src/plugins/android/androidplugin.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/android/androidplugin.cpp b/src/plugins/android/androidplugin.cpp
index 37b6180f7e2..cf90b061349 100644
--- a/src/plugins/android/androidplugin.cpp
+++ b/src/plugins/android/androidplugin.cpp
@@ -48,6 +48,7 @@
#include "javacompletionassistprovider.h"
#include "javafilewizard.h"
#include "qmakeandroidsupport.h"
+#include "qmakeandroidrunfactories.h"
#ifdef HAVE_QBS
# include "androidqbspropertyprovider.h"
#endif
@@ -74,7 +75,7 @@ bool AndroidPlugin::initialize(const QStringList &arguments, QString *errorMessa
new Internal::AndroidConfigurations(this);
addAutoReleasedObject(new Internal::AndroidRunControlFactory);
- addAutoReleasedObject(new Internal::AndroidRunConfigurationFactory);
+ addAutoReleasedObject(new Internal::QmakeAndroidRunConfigurationFactory);
addAutoReleasedObject(new Internal::AndroidPackageInstallationFactory);
addAutoReleasedObject(new Internal::AndroidDeployQtStepFactory);
addAutoReleasedObject(new Internal::AndroidSettingsPage);