diff options
author | Tobias Hunger <tobias.hunger@nokia.com> | 2010-07-06 17:56:01 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@nokia.com> | 2010-07-06 18:36:32 +0200 |
commit | 54584044ca7d56304f003ee0048c8d301d45c6a9 (patch) | |
tree | 18181969e4b5a52d5b3905d2d66d39400d490f2e /src/plugins/qt4projectmanager/qt4target.cpp | |
parent | 1062c0ad8cb7e191ae421384425b19d472152d59 (diff) | |
download | qt-creator-54584044ca7d56304f003ee0048c8d301d45c6a9.tar.gz |
Add Deploy steps
* Add "Deploy" to BuildSteps::Type
* Update UIs to handle deploy steps
* Turn existing package creation steps from build type to deploy type
* Move packaging steps into deploy steps when loading projects
Reviewed-by: dt
Diffstat (limited to 'src/plugins/qt4projectmanager/qt4target.cpp')
-rw-r--r-- | src/plugins/qt4projectmanager/qt4target.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/qt4projectmanager/qt4target.cpp b/src/plugins/qt4projectmanager/qt4target.cpp index 990d62111b..198e2e7eff 100644 --- a/src/plugins/qt4projectmanager/qt4target.cpp +++ b/src/plugins/qt4projectmanager/qt4target.cpp @@ -283,9 +283,9 @@ Qt4BuildConfiguration *Qt4Target::addQt4BuildConfiguration(QString displayName, if (id() == Constants::S60_DEVICE_TARGET_ID) { S60CreatePackageStep *packageStep = new S60CreatePackageStep(bc); - bc->insertStep(ProjectExplorer::BuildStep::Build, 2, packageStep); + bc->insertStep(ProjectExplorer::BuildStep::Deploy, 2, packageStep); } else if (id() == Constants::MAEMO_DEVICE_TARGET_ID) { - bc->insertStep(ProjectExplorer::BuildStep::Build, 2, new MaemoPackageCreationStep(bc)); + bc->insertStep(ProjectExplorer::BuildStep::Deploy, 2, new MaemoPackageCreationStep(bc)); } MakeStep* cleanStep = new MakeStep(bc); |