Maemo: Move INSTALLS information from package step to deploy step.

... because the files are installed even when packaging is disabled.

Reviewed-by: kh1
This commit is contained in:
ck
2010-07-14 12:21:35 +02:00
parent d0cbac9032
commit 8a3c1cc0d4
15 changed files with 109 additions and 82 deletions

View File

@@ -47,10 +47,13 @@
#include <QtCore/QList>
#include <QtCore/QObject>
namespace ProjectExplorer { class BuildStep; }
namespace Qt4ProjectManager {
namespace Internal {
class MaemoDeployableListModel;
class MaemoPackageCreationStep;
class Qt4BuildConfiguration;
class Qt4NodesWatcher;
class Qt4ProFileNode;
@@ -58,7 +61,7 @@ class MaemoDeployables : public QObject
{
Q_OBJECT
public:
MaemoDeployables(MaemoPackageCreationStep *packagingStep);
MaemoDeployables(const ProjectExplorer::BuildStep *buildStep);
void setUnmodified();
bool isModified() const;
int deployableCount() const;
@@ -73,9 +76,10 @@ signals:
private:
Q_SLOT void createModels();
void createModels(const Qt4ProFileNode *proFileNode);
const Qt4BuildConfiguration *qt4BuildConfiguration() const;
QList<MaemoDeployableListModel *> m_listModels;
MaemoPackageCreationStep * const m_packagingStep;
const ProjectExplorer::BuildStep * const m_buildStep;
Qt4NodesWatcher *m_proFilesWatcher;
};