cmMakefile: Move IncludeScope instance.
This commit is contained in:
parent
b7166afa6d
commit
e53072d638
|
@ -558,6 +558,8 @@ bool cmMakefile::ReadListFile(const char* listfile,
|
||||||
bool noPolicyScope,
|
bool noPolicyScope,
|
||||||
bool requireProjectCommand)
|
bool requireProjectCommand)
|
||||||
{
|
{
|
||||||
|
IncludeScope incScope(this, noPolicyScope);
|
||||||
|
|
||||||
std::string filenametoread =
|
std::string filenametoread =
|
||||||
cmSystemTools::CollapseFullPath(listfile,
|
cmSystemTools::CollapseFullPath(listfile,
|
||||||
this->GetCurrentSourceDirectory());
|
this->GetCurrentSourceDirectory());
|
||||||
|
@ -587,7 +589,6 @@ bool cmMakefile::ReadListFile(const char* listfile,
|
||||||
this->MarkVariableAsUsed("CMAKE_CURRENT_LIST_FILE");
|
this->MarkVariableAsUsed("CMAKE_CURRENT_LIST_FILE");
|
||||||
this->MarkVariableAsUsed("CMAKE_CURRENT_LIST_DIR");
|
this->MarkVariableAsUsed("CMAKE_CURRENT_LIST_DIR");
|
||||||
|
|
||||||
IncludeScope incScope(this, noPolicyScope);
|
|
||||||
this->ReadListFileInternal(listFile);
|
this->ReadListFileInternal(listFile);
|
||||||
if(cmSystemTools::GetFatalErrorOccured())
|
if(cmSystemTools::GetFatalErrorOccured())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue