parent
55303d6dd2
commit
581518919b
|
@ -1074,9 +1074,20 @@ void cmMakefile::ConfigureSubDirectory(cmLocalGenerator *lg2)
|
||||||
// copy our variables from the child makefile
|
// copy our variables from the child makefile
|
||||||
lg2->GetMakefile()->InitializeFromParent();
|
lg2->GetMakefile()->InitializeFromParent();
|
||||||
lg2->GetMakefile()->MakeStartDirectoriesCurrent();
|
lg2->GetMakefile()->MakeStartDirectoriesCurrent();
|
||||||
|
if (this->GetCMakeInstance()->GetDebugOutput())
|
||||||
|
{
|
||||||
|
std::string msg=" Entering ";
|
||||||
|
msg += lg2->GetMakefile()->GetCurrentDirectory();
|
||||||
|
cmSystemTools::Message(msg.c_str());
|
||||||
|
}
|
||||||
// finally configure the subdir
|
// finally configure the subdir
|
||||||
lg2->Configure();
|
lg2->Configure();
|
||||||
|
if (this->GetCMakeInstance()->GetDebugOutput())
|
||||||
|
{
|
||||||
|
std::string msg=" Returning to ";
|
||||||
|
msg += this->GetCurrentDirectory();
|
||||||
|
cmSystemTools::Message(msg.c_str());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmMakefile::AddSubDirectory(const char* sub,
|
void cmMakefile::AddSubDirectory(const char* sub,
|
||||||
|
|
Loading…
Reference in New Issue