Make it possible to use non-autodetected Qt for Symbian.

Users can specify a S60 SDK root for Qt for Symbian versions
now.
This commit is contained in:
con
2009-10-27 17:59:53 +01:00
parent 1ef61e0720
commit 7c12dad4a0
8 changed files with 100 additions and 37 deletions

View File

@@ -214,6 +214,16 @@ S60Devices::Device S60Devices::deviceForId(const QString &id) const
return Device();
}
S60Devices::Device S60Devices::deviceForEpocRoot(const QString &root) const
{
foreach (const S60Devices::Device &i, m_devices) {
if (i.epocRoot == root) {
return i;
}
}
return Device();
}
QString S60Devices::cleanedRootPath(const QString &deviceRoot)
{
QString path = deviceRoot;