forked from qt-creator/qt-creator
Find Qt installation by specification of qmake rather than a "Qt dir".
Rationale: The concept of a "Qt Dir" is dead ever since Qt can be installed. Specifying the qmake location otoh makes it possible to unambigously detect all parts of a Qt installation.
This commit is contained in:
@@ -552,7 +552,7 @@ void S60DeviceRunControl::start()
|
||||
m_targetName = rc->targetName();
|
||||
m_baseFileName = rc->basePackageFilePath();
|
||||
m_workingDirectory = QFileInfo(m_baseFileName).absolutePath();
|
||||
m_qtDir = project->qtVersion(project->activeBuildConfiguration())->path();
|
||||
m_qtDir = project->qtVersion(project->activeBuildConfiguration())->versionInfo().value("QT_INSTALL_DATA");
|
||||
m_useCustomSignature = (rc->signingMode() == S60DeviceRunConfiguration::SignCustom);
|
||||
m_customSignaturePath = rc->customSignaturePath();
|
||||
m_customKeyPath = rc->customKeyPath();
|
||||
|
||||
Reference in New Issue
Block a user