forked from qt-creator/qt-creator
QmakeProjectManager: Suppress parsing for inactive build configurations
Change-Id: I25bf1cd4e1382ecf55df853f4f1ee3c16657a2f4 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -483,6 +483,12 @@ void QmakeBuildSystem::scheduleUpdateAll(QmakeProFile::AsyncUpdateDelay delay)
|
||||
return;
|
||||
}
|
||||
|
||||
if (!buildConfiguration()->isActive()) {
|
||||
TRACE("firstParseNeeded: " << int(m_firstParseNeeded)
|
||||
<< ", suppressed: buildconfig not active");
|
||||
return;
|
||||
}
|
||||
|
||||
TRACE("firstParseNeeded: " << int(m_firstParseNeeded) << ", delay: " << delay);
|
||||
|
||||
rootProFile()->setParseInProgressRecursive(true);
|
||||
|
Reference in New Issue
Block a user