2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2009-06-26 00:41:57 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2009-06-26 00:41:57 +04:00
|
|
|
|
2009-09-28 19:43:28 +04: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.
|
|
|
|
============================================================================*/
|
2009-06-26 00:41:57 +04:00
|
|
|
#include "cmLocalVisualStudio10Generator.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include "cmGeneratorTarget.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmGlobalVisualStudio10Generator.h"
|
2009-06-26 00:41:57 +04:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmVisualStudio10TargetGenerator.h"
|
2009-07-14 00:58:24 +04:00
|
|
|
#include "cmXMLParser.h"
|
2016-09-01 21:59:28 +03:00
|
|
|
|
2016-04-29 17:53:13 +03:00
|
|
|
#include <cm_expat.h>
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2009-07-14 00:58:24 +04:00
|
|
|
class cmVS10XMLParser : public cmXMLParser
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
public:
|
|
|
|
virtual void EndElement(const std::string& /* name */) {}
|
2009-07-14 00:58:24 +04:00
|
|
|
virtual void CharacterDataHandler(const char* data, int length)
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
if (this->DoGUID) {
|
|
|
|
this->GUID.assign(data + 1, length - 2);
|
|
|
|
this->DoGUID = false;
|
2009-07-14 00:58:24 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-02-22 04:05:55 +04:00
|
|
|
virtual void StartElement(const std::string& name, const char**)
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
// once the GUID is found do nothing
|
|
|
|
if (!this->GUID.empty()) {
|
|
|
|
return;
|
2009-07-14 00:58:24 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
if ("ProjectGUID" == name || "ProjectGuid" == name) {
|
|
|
|
this->DoGUID = true;
|
|
|
|
}
|
|
|
|
}
|
2009-07-14 00:58:24 +04:00
|
|
|
int InitializeParser()
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
this->DoGUID = false;
|
|
|
|
int ret = cmXMLParser::InitializeParser();
|
|
|
|
if (ret == 0) {
|
|
|
|
return ret;
|
2009-07-14 00:58:24 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
// visual studio projects have a strange encoding, but it is
|
|
|
|
// really utf-8
|
|
|
|
XML_SetEncoding(static_cast<XML_Parser>(this->Parser), "utf-8");
|
|
|
|
return 1;
|
|
|
|
}
|
2009-07-14 00:58:24 +04:00
|
|
|
std::string GUID;
|
|
|
|
bool DoGUID;
|
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmLocalVisualStudio10Generator::cmLocalVisualStudio10Generator(
|
|
|
|
cmGlobalGenerator* gg, cmMakefile* mf)
|
|
|
|
: cmLocalVisualStudio7Generator(gg, mf)
|
2009-06-26 00:41:57 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
cmLocalVisualStudio10Generator::~cmLocalVisualStudio10Generator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalVisualStudio10Generator::Generate()
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2015-10-18 18:06:14 +03:00
|
|
|
std::vector<cmGeneratorTarget*> tgts = this->GetGeneratorTargets();
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); ++l) {
|
|
|
|
if ((*l)->GetType() == cmState::INTERFACE_LIBRARY) {
|
2012-11-02 18:47:40 +04:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (static_cast<cmGlobalVisualStudioGenerator*>(this->GlobalGenerator)
|
|
|
|
->TargetIsFortranOnly(*l)) {
|
2015-10-22 19:27:58 +03:00
|
|
|
this->CreateSingleVCProj((*l)->GetName().c_str(), *l);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2011-07-09 01:08:43 +04:00
|
|
|
cmVisualStudio10TargetGenerator tg(
|
2015-10-22 19:27:57 +03:00
|
|
|
*l, static_cast<cmGlobalVisualStudio10Generator*>(
|
2016-05-16 17:34:04 +03:00
|
|
|
this->GetGlobalGenerator()));
|
2011-07-09 01:08:43 +04:00
|
|
|
tg.Generate();
|
2009-06-26 00:41:57 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-06-26 00:41:57 +04:00
|
|
|
this->WriteStampFiles();
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio10Generator::ReadAndStoreExternalGUID(
|
|
|
|
const std::string& name, const char* path)
|
2009-07-14 00:58:24 +04:00
|
|
|
{
|
|
|
|
cmVS10XMLParser parser;
|
2012-08-13 21:42:58 +04:00
|
|
|
parser.ParseFile(path);
|
2012-04-16 18:07:19 +04:00
|
|
|
|
2015-06-02 18:49:07 +03:00
|
|
|
// if we can not find a GUID then we will generate one later
|
2016-05-16 17:34:04 +03:00
|
|
|
if (parser.GUID.empty()) {
|
2012-04-16 18:07:19 +04:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-04-16 18:07:19 +04:00
|
|
|
|
2009-07-14 00:58:24 +04:00
|
|
|
std::string guidStoreName = name;
|
|
|
|
guidStoreName += "_GUID_CMAKE";
|
|
|
|
// save the GUID in the cache
|
2016-05-16 17:34:04 +03:00
|
|
|
this->GlobalGenerator->GetCMakeInstance()->AddCacheEntry(
|
|
|
|
guidStoreName.c_str(), parser.GUID.c_str(), "Stored GUID",
|
|
|
|
cmState::INTERNAL);
|
2009-07-14 00:58:24 +04:00
|
|
|
}
|
2010-12-17 19:11:55 +03:00
|
|
|
|
2011-04-08 18:40:57 +04:00
|
|
|
const char* cmLocalVisualStudio10Generator::ReportErrorLabel() const
|
2010-12-17 19:11:55 +03:00
|
|
|
{
|
2011-04-08 18:40:57 +04:00
|
|
|
return ":VCEnd";
|
2010-12-17 19:11:55 +03:00
|
|
|
}
|