forked from qt-creator/qt-creator
Qt4projectManager: Refactor Qt4Target, split up in per target classes
Almost(*) all of the symbian and maemo specific code is now theoretically moveable to a separate plugin. Thus making it possible to implement new targets in a plugin. (*) Noteable missing is the qtversion, which needs to be split up per target too. Also fixes Task-Nr: QTCREATORBUG-2440 Reviewed-By: hunger Reviewed-By: ck
This commit is contained in:
@@ -42,20 +42,20 @@
|
||||
#include "maemodeployables.h"
|
||||
|
||||
#include "maemoprofilesupdatedialog.h"
|
||||
#include "qt4maemotarget.h"
|
||||
|
||||
#include <profileevaluator.h>
|
||||
#include <projectexplorer/buildstep.h>
|
||||
#include <qt4projectmanager/qt4projectmanagerconstants.h>
|
||||
#include <qt4projectmanager/qt4buildconfiguration.h>
|
||||
#include <qt4projectmanager/qt4project.h>
|
||||
#include <qt4projectmanager/qt4target.h>
|
||||
|
||||
#include <QtCore/QTimer>
|
||||
|
||||
namespace Qt4ProjectManager {
|
||||
namespace Internal {
|
||||
|
||||
MaemoDeployables::MaemoDeployables(const Qt4Target *target)
|
||||
MaemoDeployables::MaemoDeployables(const Qt4MaemoTarget *target)
|
||||
: m_target(target), m_updateTimer(new QTimer(this))
|
||||
{
|
||||
QTimer::singleShot(0, this, SLOT(init()));
|
||||
|
||||
Reference in New Issue
Block a user