cmake/Source/cmExternalMakefileProjectGenerator.cxx

71 lines
2.1 KiB
C++
Raw Normal View History

2009-10-04 10:30:41 +03:00
/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2009-10-04 10:30:41 +03:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2009-10-04 10:30:41 +03:00
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 <assert.h>
#include "cmExternalMakefileProjectGenerator.h"
2014-08-03 19:52:23 +02:00
void cmExternalMakefileProjectGenerator
::EnableLanguage(std::vector<std::string> const&,
cmMakefile *, bool)
{
}
std::string cmExternalMakefileProjectGenerator::CreateFullGeneratorName(
2015-04-27 22:25:09 +02:00
const std::string& globalGenerator,
const std::string& extraGenerator)
{
std::string fullName;
2015-04-27 22:25:09 +02:00
if (!globalGenerator.empty())
{
2015-04-27 22:25:09 +02:00
if (!extraGenerator.empty())
{
fullName = extraGenerator;
fullName += " - ";
}
fullName += globalGenerator;
}
return fullName;
}
2015-04-27 22:25:09 +02:00
std::string cmExternalMakefileProjectGenerator::GetGlobalGeneratorName(
const std::string& fullName)
{
// at least one global generator must be supported
assert(!this->SupportedGlobalGenerators.empty());
2015-04-27 22:25:09 +02:00
if (fullName.empty())
{
2015-04-27 22:25:09 +02:00
return "";
}
std::string currentName = fullName;
// if we get only the short name, take the first global generator as default
if (currentName == this->GetName())
{
2015-04-27 22:25:09 +02:00
return this->SupportedGlobalGenerators[0];
}
// otherwise search for the matching global generator
2013-03-16 19:13:01 +02:00
for (std::vector<std::string>::const_iterator
it = this->SupportedGlobalGenerators.begin();
it != this->SupportedGlobalGenerators.end();
++it)
{
2015-04-27 22:25:09 +02:00
if (this->CreateFullGeneratorName(*it, this->GetName())
== currentName)
{
2015-04-27 22:25:09 +02:00
return *it;
}
}
2015-04-27 22:25:09 +02:00
return "";
}