Fix project locations for symbian and maemo

This commit is contained in:
Tobias Hunger
2011-03-28 17:47:13 +02:00
parent 07f269f27c
commit c6a74143b2
2 changed files with 8 additions and 6 deletions

View File

@@ -146,11 +146,14 @@ QString Qt4MaemoTargetFactory::buildNameForId(const QString &id) const
QString Qt4MaemoTargetFactory::shadowBuildDirectory(const QString &profilePath, const QString &id, const QString &suffix)
{
//TODO why?
#if defined(Q_OS_WIN)
return profilePath;
#endif
// No shadowbuilding for windows!
Q_UNUSED(id);
Q_UNUSED(suffix);
return QFileInfo(profilePath).absolutePath();
#else
return Qt4BaseTargetFactory::shadowBuildDirectory(profilePath, id, suffix);
#endif
}
bool Qt4MaemoTargetFactory::isMobileTarget(const QString &id)