cmMakefile: Extract conditional code to caller.
This commit is contained in:
parent
7d24854736
commit
95a27267da
|
@ -525,6 +525,7 @@ void cmMakefile::IncludeScope::EnforceCMP0011()
|
|||
bool cmMakefile::ProcessBuildsystemFile(const char* listfile)
|
||||
{
|
||||
this->AddDefinition("CMAKE_PARENT_LIST_FILE", listfile);
|
||||
this->cmCurrentListFile = listfile;
|
||||
return this->ReadListFile(listfile, 0, true,
|
||||
this->cmStartDirectory == this->cmHomeDirectory);
|
||||
}
|
||||
|
@ -553,11 +554,6 @@ bool cmMakefile::ReadListFile(const char* filename_in,
|
|||
filenametoread = filename_in;
|
||||
}
|
||||
|
||||
if (!filenametoread.empty())
|
||||
{
|
||||
this->cmCurrentListFile = filenametoread;
|
||||
}
|
||||
|
||||
if (external_in)
|
||||
{
|
||||
filenametoread =
|
||||
|
|
Loading…
Reference in New Issue