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"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmGeneratedFileStream.h"
|
2015-03-24 08:12:55 +03:00
|
|
|
#include "cmGeneratorTarget.h"
|
|
|
|
#include "cmGhsMultiTargetGenerator.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmGlobalGhsMultiGenerator.h"
|
|
|
|
#include "cmMakefile.h"
|
2015-03-24 08:12:55 +03:00
|
|
|
|
2015-05-03 17:50:34 +03:00
|
|
|
cmLocalGhsMultiGenerator::cmLocalGhsMultiGenerator(cmGlobalGenerator* gg,
|
2015-08-02 12:41:51 +03:00
|
|
|
cmMakefile* mf)
|
|
|
|
: cmLocalGenerator(gg, mf)
|
2015-03-24 08:12:55 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
cmLocalGhsMultiGenerator::~cmLocalGhsMultiGenerator() {}
|
|
|
|
|
|
|
|
void cmLocalGhsMultiGenerator::Generate()
|
|
|
|
{
|
2015-10-18 17:53:00 +03:00
|
|
|
std::vector<cmGeneratorTarget*> tgts = this->GetGeneratorTargets();
|
2015-05-23 15:44:14 +03:00
|
|
|
|
2015-10-18 17:53:00 +03:00
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); ++l)
|
2015-03-24 08:12:55 +03:00
|
|
|
{
|
2015-10-18 17:53:00 +03:00
|
|
|
if ((*l)->GetType() == cmState::INTERFACE_LIBRARY)
|
2015-05-23 15:45:14 +03:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2015-10-18 17:53:00 +03:00
|
|
|
cmGhsMultiTargetGenerator tg(*l);
|
2015-05-23 15:44:14 +03:00
|
|
|
tg.Generate();
|
2015-03-24 08:12:55 +03:00
|
|
|
}
|
|
|
|
}
|