Skip to content
Snippets Groups Projects
Commit 951123a2 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

Symbian: Allow installer to set SBS v2 directory

Allow the installer to specify the SBS v2 directory.

Reviewed-by: Tim Jenssen
parent 542fdc07
No related branches found
No related tags found
No related merge requests found
...@@ -381,6 +381,8 @@ void QtVersionManager::addNewVersionsFromInstaller() ...@@ -381,6 +381,8 @@ void QtVersionManager::addNewVersionsFromInstaller()
version->setMwcDirectory(QDir::fromNativeSeparators(newVersionData[5])); version->setMwcDirectory(QDir::fromNativeSeparators(newVersionData[5]));
if (newVersionData.count() >= 7) if (newVersionData.count() >= 7)
version->setMsvcVersion(newVersionData[6]); version->setMsvcVersion(newVersionData[6]);
if (newVersionData.count() >= 8)
version->setSbsV2Path(QDir::fromNativeSeparators(newVersionData[7]));
bool versionWasAlreadyInList = false; bool versionWasAlreadyInList = false;
foreach(const QtVersion * const it, m_versions) { foreach(const QtVersion * const it, m_versions) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment