forked from qt-creator/qt-creator
implement simple VFS to support caching during project parsing
this tremendously speeds up loading of qt 5.1 based projects (including qt itself) under mac os, as these look up the sdk dynamically, and use caching to avoid doing that in every subproject. Change-Id: I833253f81c3159056fab2ff888f293b36cc2ef56 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
@@ -43,9 +43,9 @@ void ProFileEvaluator::initialize()
|
||||
QMakeEvaluator::initStatics();
|
||||
}
|
||||
|
||||
ProFileEvaluator::ProFileEvaluator(ProFileGlobals *option, QMakeParser *parser,
|
||||
ProFileEvaluator::ProFileEvaluator(ProFileGlobals *option, QMakeParser *parser, QMakeVfs *vfs,
|
||||
QMakeHandler *handler)
|
||||
: d(new QMakeEvaluator(option, parser, handler))
|
||||
: d(new QMakeEvaluator(option, parser, vfs, handler))
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user