Maemo: Disable shadow building on windows again

Task-Nr: QTCREATORBUG-4255
Reviewed-By: Robert Loehning
This commit is contained in:
dt
2011-03-28 18:32:49 +02:00
parent f1dd01fd29
commit 8839031e60
2 changed files with 8 additions and 0 deletions

View File

@@ -751,6 +751,10 @@ bool QtVersion::supportsShadowBuilds() const
// We can not support shadow building with the ABLD system
return false;
}
#ifdef Q_OS_WIN
if (targets.contains(Constants::MEEGO_DEVICE_TARGET_ID))
return false;
#endif
return true;
}