2015-03-24 08:12:55 +03:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2015 Geoffrey Viola <geoffrey.viola@asirobots.com>
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
|
|
|
#include "cmLocalGhsMultiGenerator.h"
|
|
|
|
#include "cmGlobalGhsMultiGenerator.h"
|
|
|
|
#include "cmGeneratorTarget.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmGhsMultiTargetGenerator.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
|
|
|
|
2015-05-03 17:50:34 +03:00
|
|
|
cmLocalGhsMultiGenerator::cmLocalGhsMultiGenerator(cmGlobalGenerator* gg,
|
|
|
|
cmLocalGenerator* parent)
|
|
|
|
: cmLocalGenerator(gg, parent)
|
2015-03-24 08:12:55 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
cmLocalGhsMultiGenerator::~cmLocalGhsMultiGenerator() {}
|
|
|
|
|
|
|
|
void cmLocalGhsMultiGenerator::Generate()
|
|
|
|
{
|
|
|
|
cmGeneratorTargetsType tgts = this->GetMakefile()->GetGeneratorTargets();
|
|
|
|
if (!tgts.empty())
|
|
|
|
{
|
|
|
|
for (cmGeneratorTargetsType::iterator l = tgts.begin(); l != tgts.end();
|
|
|
|
++l)
|
|
|
|
{
|
|
|
|
cmGhsMultiTargetGenerator tg(l->second->Target);
|
|
|
|
tg.Generate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|