forked from qt-creator/qt-creator
Update qbs submodule
To HEAD of 1.8 branch, and adapt to changed API. Change-Id: Ie180b114726134a06dfefe9dc3a6dc27997f246c Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -411,12 +411,20 @@ bool QbsProject::checkCancelStatus()
|
||||
return true;
|
||||
}
|
||||
|
||||
static QSet<QString> toQStringSet(const std::set<QString> &src)
|
||||
{
|
||||
QSet<QString> result;
|
||||
result.reserve(src.size());
|
||||
std::copy(src.begin(), src.end(), Utils::inserter(result));
|
||||
return result;
|
||||
}
|
||||
|
||||
void QbsProject::updateAfterParse()
|
||||
{
|
||||
qCDebug(qbsPmLog) << "Updating data after parse";
|
||||
OpTimer opTimer("updateAfterParse");
|
||||
updateProjectNodes();
|
||||
updateDocuments(m_qbsProject.buildSystemFiles());
|
||||
updateDocuments(toQStringSet(m_qbsProject.buildSystemFiles()));
|
||||
updateBuildTargetData();
|
||||
updateCppCodeModel();
|
||||
updateQmlJsCodeModel();
|
||||
|
||||
Reference in New Issue
Block a user