forked from qt-creator/qt-creator
Fix restoring cmake run configurations
Amends 5bcd59c94f.
Fixes: QTCREATORBUG-22932
Change-Id: I46b42f0e15eaf1fe4bd2f1ea4a87286ee68cfee8
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -867,7 +867,10 @@ bool Target::fromMap(const QVariantMap &map)
|
||||
RunConfiguration *rc = RunConfigurationFactory::restore(this, valueMap);
|
||||
if (!rc)
|
||||
continue;
|
||||
QTC_CHECK(rc->id().withSuffix(rc->buildKey()) == ProjectExplorer::idFromMap(valueMap));
|
||||
const Core::Id theIdFromMap = ProjectExplorer::idFromMap(valueMap);
|
||||
if (!theIdFromMap.toString().contains("///::///")) { // Hack for cmake 4.10 -> 4.11
|
||||
QTC_CHECK(rc->id().withSuffix(rc->buildKey()) == theIdFromMap);
|
||||
}
|
||||
addRunConfiguration(rc);
|
||||
if (i == activeConfiguration)
|
||||
setActiveRunConfiguration(rc);
|
||||
|
||||
Reference in New Issue
Block a user