Allow a project to opt-out of the normal deployment configuration

Even if we supported several deployment factories, we will need a way
for projects to say that the normal deployment will not work for them.

Change-Id: I6d42ef22a8ff50cc6f2ec3307f2c1d3f2faf4ef9
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Tobias Hunger
2013-05-06 11:14:27 +02:00
parent 59b303fadc
commit d389c45b1b
3 changed files with 8 additions and 1 deletions

View File

@@ -468,6 +468,11 @@ bool Project::supportsNoTargetPanel() const
return false;
}
bool Project::needsSpecialDeployment() const
{
return false;
}
void Project::onBuildDirectoryChanged()
{
Target *target = qobject_cast<Target *>(sender());