Qbs: Add QbsDeployConfigurationFactory

Add QbsDeployConfigurationFactory and mark the QbsProject to not
work with the default deployment for Desktop projects.

Change-Id: I9230d5017b475d53cf13e86b4a073c248fedfaf0
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Tobias Hunger
2013-05-06 11:16:41 +02:00
parent d389c45b1b
commit 9fa9c227db
7 changed files with 226 additions and 0 deletions

View File

@@ -239,6 +239,11 @@ const qbs::ProjectData *QbsProject::qbsProjectData() const
return m_rootProjectNode->projectData();
}
bool QbsProject::needsSpecialDeployment() const
{
return true;
}
void QbsProject::handleQbsParsingDone(bool success)
{
QTC_ASSERT(m_qbsSetupProjectJob, return);