Profile introduction

Introduce Profiles to store sets of values that describe a system/device.

These profiles are held by a target, getting rid of much of the information
stored in the Build-/Run-/DeployConfigurations, greatly simplifying those.

This is a squash of the wip/profile branch which has been on gerrit for a
while, rebased to current master.

Change-Id: I25956c8dd4d1962b2134bfaa8a8076ae3909460f
Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
Tobias Hunger
2012-04-24 15:49:09 +02:00
parent 8c77b8c9d7
commit 2431456216
379 changed files with 12690 additions and 14437 deletions

View File

@@ -36,51 +36,50 @@
#include "androidconfigurations.h"
#include "androiddeploystepfactory.h"
#include "androidconfigurations.h"
#include "androidmanager.h"
#include "androidpackagecreationfactory.h"
#include "androidpackageinstallationfactory.h"
#include "androidrunfactories.h"
#include "androidsettingspage.h"
#include "androidtoolchain.h"
#include "androidqtversionfactory.h"
#include "androidtargetfactory.h"
#include "androiddeployconfiguration.h"
#include <QtPlugin>
using namespace Android;
using namespace Android::Internal;
namespace Android {
AndroidPlugin::AndroidPlugin()
{
}
{ }
AndroidPlugin::~AndroidPlugin()
{
}
{ }
bool AndroidPlugin::initialize(const QStringList &arguments,
QString *error_message)
QString *error_message)
{
Q_UNUSED(arguments)
Q_UNUSED(error_message)
Q_UNUSED(arguments);
Q_UNUSED(error_message);
AndroidConfigurations::instance(this);
Internal::AndroidConfigurations::instance(this);
addAutoReleasedObject(new AndroidRunControlFactory);
addAutoReleasedObject(new AndroidRunConfigurationFactory);
addAutoReleasedObject(new AndroidPackageInstallationFactory);
addAutoReleasedObject(new AndroidPackageCreationFactory);
addAutoReleasedObject(new AndroidDeployStepFactory);
addAutoReleasedObject(new AndroidSettingsPage);
addAutoReleasedObject(new AndroidTargetFactory);
addAutoReleasedObject(new AndroidQtVersionFactory);
addAutoReleasedObject(new AndroidToolChainFactory);
addAutoReleasedObject(new AndroidDeployConfigurationFactory);
new Internal::AndroidManager(this);
addAutoReleasedObject(new Internal::AndroidRunControlFactory);
addAutoReleasedObject(new Internal::AndroidRunConfigurationFactory);
addAutoReleasedObject(new Internal::AndroidPackageInstallationFactory);
addAutoReleasedObject(new Internal::AndroidPackageCreationFactory);
addAutoReleasedObject(new Internal::AndroidDeployStepFactory);
addAutoReleasedObject(new Internal::AndroidSettingsPage);
addAutoReleasedObject(new Internal::AndroidQtVersionFactory);
addAutoReleasedObject(new Internal::AndroidToolChainFactory);
addAutoReleasedObject(new Internal::AndroidDeployConfigurationFactory);
return true;
}
void AndroidPlugin::extensionsInitialized()
{
}
{ }
} // namespace Android
Q_EXPORT_PLUGIN(Android::AndroidPlugin)