GHS: Use a cmGeneratorTarget in generator API.
This commit is contained in:
parent
b2b41b83ff
commit
dee197fe61
|
@ -21,23 +21,24 @@
|
|||
|
||||
std::string const cmGhsMultiTargetGenerator::DDOption("-dynamic");
|
||||
|
||||
cmGhsMultiTargetGenerator::cmGhsMultiTargetGenerator(cmTarget *target)
|
||||
: Target(target)
|
||||
cmGhsMultiTargetGenerator::cmGhsMultiTargetGenerator(cmGeneratorTarget *target)
|
||||
: Target(target->Target)
|
||||
, GeneratorTarget(target)
|
||||
, LocalGenerator(static_cast<cmLocalGhsMultiGenerator *>(
|
||||
target->GetMakefile()->GetLocalGenerator()))
|
||||
, Makefile(target->GetMakefile())
|
||||
, TargetGroup(DetermineIfTargetGroup(target))
|
||||
target->GetLocalGenerator()))
|
||||
, Makefile(target->Target->GetMakefile())
|
||||
, TargetGroup(DetermineIfTargetGroup(target->Target))
|
||||
, DynamicDownload(false)
|
||||
{
|
||||
this->RelBuildFilePath = this->GetRelBuildFilePath(target);
|
||||
this->RelBuildFilePath = this->GetRelBuildFilePath(target->Target);
|
||||
|
||||
this->RelOutputFileName =
|
||||
this->RelBuildFilePath + this->Target->GetName() + ".a";
|
||||
|
||||
this->RelBuildFileName = this->RelBuildFilePath;
|
||||
this->RelBuildFileName += this->GetBuildFileName(target);
|
||||
this->RelBuildFileName += this->GetBuildFileName(target->Target);
|
||||
|
||||
std::string absPathToRoot = this->GetAbsPathToRoot(target);
|
||||
std::string absPathToRoot = this->GetAbsPathToRoot(target->Target);
|
||||
absPathToRoot = this->AddSlashIfNeededToPath(absPathToRoot);
|
||||
this->AbsBuildFilePath = absPathToRoot + this->RelBuildFilePath;
|
||||
this->AbsBuildFileName = absPathToRoot + this->RelBuildFileName;
|
||||
|
@ -373,7 +374,6 @@ void cmGhsMultiTargetGenerator::WriteTargetLinkLibraries()
|
|||
cmTarget *tg(GetGlobalGenerator()->FindTarget(libName));
|
||||
if (NULL != tg)
|
||||
{
|
||||
cmGhsMultiTargetGenerator gmtg(tg);
|
||||
libName = tg->GetName() + ".a";
|
||||
}
|
||||
*this->GetFolderBuildStreams() << " -l\"" << libName << "\""
|
||||
|
|
|
@ -27,7 +27,7 @@ class cmCustomCommand;
|
|||
class cmGhsMultiTargetGenerator
|
||||
{
|
||||
public:
|
||||
cmGhsMultiTargetGenerator(cmTarget *target);
|
||||
cmGhsMultiTargetGenerator(cmGeneratorTarget* target);
|
||||
|
||||
virtual ~cmGhsMultiTargetGenerator();
|
||||
|
||||
|
@ -100,6 +100,7 @@ private:
|
|||
const std::string &language);
|
||||
|
||||
cmTarget *Target;
|
||||
cmGeneratorTarget* GeneratorTarget;
|
||||
cmLocalGhsMultiGenerator *LocalGenerator;
|
||||
cmMakefile *Makefile;
|
||||
std::string AbsBuildFilePath;
|
||||
|
|
|
@ -37,7 +37,7 @@ void cmLocalGhsMultiGenerator::Generate()
|
|||
{
|
||||
continue;
|
||||
}
|
||||
cmGhsMultiTargetGenerator tg(l->second->Target);
|
||||
cmGhsMultiTargetGenerator tg(l->second);
|
||||
tg.Generate();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue