mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-27 19:28:37 -06:00
cmLocalGenerator: Assert that there is a parent.
If the CMakeLists.txt file does not exist, there must be a parent. The case for the top-level of the project is already handled in cmake::DoPreConfigureChecks.
This commit is contained in:
@@ -198,10 +198,7 @@ void cmLocalGenerator::ReadInputFile()
|
||||
return;
|
||||
}
|
||||
|
||||
if(!this->Parent)
|
||||
{
|
||||
return;
|
||||
}
|
||||
assert(this->Parent);
|
||||
|
||||
// The file is missing. Check policy CMP0014.
|
||||
cmMakefile* mf = this->Parent->GetMakefile();
|
||||
|
||||
Reference in New Issue
Block a user