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