Maemo: Introduce deploy step infrastructure.

Doesn't do anything yet.
This commit is contained in:
ck
2010-07-12 11:07:36 +02:00
parent f823c4810e
commit 6fc00ddca8
11 changed files with 311 additions and 4 deletions

View File

@@ -0,0 +1,30 @@
#ifndef MAEMODEPLOYSTEP_H
#define MAEMODEPLOYSTEP_H
#include <projectexplorer/buildstep.h>
namespace Qt4ProjectManager {
namespace Internal {
class MaemoDeployStep : public ProjectExplorer::BuildStep
{
Q_OBJECT
friend class MaemoDeployStepFactory;
public:
MaemoDeployStep(ProjectExplorer::BuildConfiguration *bc);
private:
MaemoDeployStep(ProjectExplorer::BuildConfiguration *bc,
MaemoDeployStep *other);
virtual bool init();
virtual void run(QFutureInterface<bool> &fi);
virtual ProjectExplorer::BuildStepConfigWidget *createConfigWidget();
virtual bool immutable() const { return true; }
static const QLatin1String Id;
};
} // namespace Internal
} // namespace Qt4ProjectManager
#endif // MAEMODEPLOYSTEP_H