QtAutogen: Inline static factory method.
This commit is contained in:
parent
58f41c789f
commit
460e8fb9ad
|
@ -1203,20 +1203,6 @@ std::string cmQtAutoGenerators::GetRccExecutable(cmTarget const* target)
|
||||||
return std::string();
|
return std::string();
|
||||||
}
|
}
|
||||||
|
|
||||||
static cmGlobalGenerator* CreateGlobalGenerator(cmake* cm,
|
|
||||||
const std::string& targetDirectory)
|
|
||||||
{
|
|
||||||
cmGlobalGenerator* gg = new cmGlobalGenerator();
|
|
||||||
gg->SetCMakeInstance(cm);
|
|
||||||
|
|
||||||
cmLocalGenerator* lg = gg->MakeLocalGenerator();
|
|
||||||
lg->GetMakefile()->SetCurrentBinaryDirectory(targetDirectory);
|
|
||||||
lg->GetMakefile()->SetCurrentSourceDirectory(targetDirectory);
|
|
||||||
gg->SetCurrentLocalGenerator(lg);
|
|
||||||
|
|
||||||
return gg;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool cmQtAutoGenerators::Run(const std::string& targetDirectory,
|
bool cmQtAutoGenerators::Run(const std::string& targetDirectory,
|
||||||
const std::string& config)
|
const std::string& config)
|
||||||
{
|
{
|
||||||
|
@ -1224,7 +1210,14 @@ bool cmQtAutoGenerators::Run(const std::string& targetDirectory,
|
||||||
cmake cm;
|
cmake cm;
|
||||||
cm.SetHomeOutputDirectory(targetDirectory);
|
cm.SetHomeOutputDirectory(targetDirectory);
|
||||||
cm.SetHomeDirectory(targetDirectory);
|
cm.SetHomeDirectory(targetDirectory);
|
||||||
cmGlobalGenerator* gg = CreateGlobalGenerator(&cm, targetDirectory);
|
cmGlobalGenerator* gg = new cmGlobalGenerator();
|
||||||
|
gg->SetCMakeInstance(&cm);
|
||||||
|
|
||||||
|
cmLocalGenerator* lg = gg->MakeLocalGenerator();
|
||||||
|
lg->GetMakefile()->SetCurrentBinaryDirectory(targetDirectory);
|
||||||
|
lg->GetMakefile()->SetCurrentSourceDirectory(targetDirectory);
|
||||||
|
gg->SetCurrentLocalGenerator(lg);
|
||||||
|
|
||||||
cmMakefile* makefile = gg->GetCurrentLocalGenerator()->GetMakefile();
|
cmMakefile* makefile = gg->GetCurrentLocalGenerator()->GetMakefile();
|
||||||
|
|
||||||
this->ReadAutogenInfoFile(makefile, targetDirectory, config);
|
this->ReadAutogenInfoFile(makefile, targetDirectory, config);
|
||||||
|
|
Loading…
Reference in New Issue