forked from qt-creator/qt-creator
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:
@@ -56,7 +56,6 @@ class AndroidDeviceConfigListModel;
|
||||
class AndroidDeployStep;
|
||||
class AndroidRunConfigurationFactory;
|
||||
class AndroidToolChain;
|
||||
class AndroidTarget;
|
||||
|
||||
class AndroidRunConfiguration : public ProjectExplorer::RunConfiguration
|
||||
{
|
||||
@@ -71,12 +70,11 @@ public:
|
||||
|
||||
enum DebuggingType { DebugCppOnly, DebugQmlOnly, DebugCppAndQml };
|
||||
|
||||
AndroidRunConfiguration(AndroidTarget *parent, const QString &proFilePath);
|
||||
AndroidRunConfiguration(ProjectExplorer::Target *parent, Core::Id id, const QString &path);
|
||||
virtual ~AndroidRunConfiguration();
|
||||
|
||||
QWidget *createConfigurationWidget();
|
||||
Utils::OutputFormatter *createOutputFormatter() const;
|
||||
AndroidTarget *androidTarget() const;
|
||||
Qt4ProjectManager::Qt4BuildConfiguration *activeQt4BuildConfiguration() const;
|
||||
|
||||
AndroidDeployStep *deployStep() const;
|
||||
@@ -87,12 +85,12 @@ public:
|
||||
|
||||
DebuggingType debuggingType() const;
|
||||
|
||||
const QString gdbCmd() const;
|
||||
const Utils::FileName gdbCmd() const;
|
||||
const QString remoteChannel() const;
|
||||
const QString dumperLib() const;
|
||||
|
||||
protected:
|
||||
AndroidRunConfiguration(AndroidTarget *parent, AndroidRunConfiguration *source);
|
||||
AndroidRunConfiguration(ProjectExplorer::Target *parent, AndroidRunConfiguration *source);
|
||||
QString defaultDisplayName();
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user