TargetSetupPage: Disable editing build directory for symbian

Shadow building is not supported so editing the path has no purpose.

Reviewed-By: hunger
This commit is contained in:
dt
2011-04-12 17:41:25 +02:00
parent cd21066469
commit e3c59a5800
11 changed files with 45 additions and 3 deletions

View File

@@ -176,6 +176,16 @@ bool Qt4MaemoTargetFactory::isMobileTarget(const QString &id)
return true;
}
bool Qt4MaemoTargetFactory::supportsShadowBuilds(const QString &id)
{
Q_UNUSED(id);
#ifdef Q_OS_WIN
return false;
#else
return true;
#endif
}
ProjectExplorer::Target *Qt4MaemoTargetFactory::create(ProjectExplorer::Project *parent, const QString &id)
{
if (!canCreate(parent, id))