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"
|
|
|
|
#include "cmTarget.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmVisualStudio10TargetGenerator.h"
|
2009-10-22 16:24:11 +04:00
|
|
|
#include "cmGlobalVisualStudio10Generator.h"
|
2009-07-14 00:58:24 +04:00
|
|
|
#include <cm_expat.h>
|
|
|
|
#include "cmXMLParser.h"
|
|
|
|
class cmVS10XMLParser : public cmXMLParser
|
|
|
|
{
|
|
|
|
public:
|
2014-02-22 04:05:55 +04:00
|
|
|
virtual void EndElement(const std::string& /* name */)
|
2009-07-14 00:58:24 +04:00
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
}
|
2009-07-14 00:58:24 +04:00
|
|
|
virtual void CharacterDataHandler(const char* data, int length)
|
2012-08-13 21:42:58 +04:00
|
|
|
{
|
2009-07-14 00:58:24 +04:00
|
|
|
if(this->DoGUID )
|
|
|
|
{
|
2009-07-14 22:16:46 +04:00
|
|
|
this->GUID.assign(data+1, length-2);
|
2009-07-14 00:58:24 +04:00
|
|
|
this->DoGUID = false;
|
|
|
|
}
|
|
|
|
}
|
2014-02-22 04:05:55 +04:00
|
|
|
virtual void StartElement(const std::string& name, const char**)
|
2009-07-14 00:58:24 +04:00
|
|
|
{
|
|
|
|
// once the GUID is found do nothing
|
|
|
|
if(this->GUID.size())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2014-02-22 04:05:55 +04:00
|
|
|
if("ProjectGUID" == name || "ProjectGuid" == name)
|
2009-07-14 00:58:24 +04:00
|
|
|
{
|
|
|
|
this->DoGUID = true;
|
2012-08-13 21:42:58 +04:00
|
|
|
}
|
2009-07-14 00:58:24 +04:00
|
|
|
}
|
|
|
|
int InitializeParser()
|
|
|
|
{
|
|
|
|
this->DoGUID = false;
|
|
|
|
int ret = cmXMLParser::InitializeParser();
|
|
|
|
if(ret == 0)
|
|
|
|
{
|
|
|
|
return ret;
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
// visual studio projects have a strange encoding, but it is
|
2009-07-14 00:58:24 +04:00
|
|
|
// really utf-8
|
|
|
|
XML_SetEncoding(static_cast<XML_Parser>(this->Parser), "utf-8");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
std::string GUID;
|
|
|
|
bool DoGUID;
|
|
|
|
};
|
|
|
|
|
2009-06-26 00:41:57 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2011-11-11 02:17:41 +04:00
|
|
|
cmLocalVisualStudio10Generator::cmLocalVisualStudio10Generator(VSVersion v):
|
|
|
|
cmLocalVisualStudio7Generator(v)
|
2009-06-26 00:41:57 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
cmLocalVisualStudio10Generator::~cmLocalVisualStudio10Generator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalVisualStudio10Generator::Generate()
|
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2009-06-26 00:41:57 +04:00
|
|
|
cmTargets &tgts = this->Makefile->GetTargets();
|
|
|
|
for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); ++l)
|
|
|
|
{
|
2012-11-02 18:47:40 +04:00
|
|
|
if(l->second.GetType() == cmTarget::INTERFACE_LIBRARY)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2011-07-09 01:08:43 +04:00
|
|
|
if(static_cast<cmGlobalVisualStudioGenerator*>(this->GlobalGenerator)
|
|
|
|
->TargetIsFortranOnly(l->second))
|
|
|
|
{
|
|
|
|
this->CreateSingleVCProj(l->first.c_str(),l->second);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmVisualStudio10TargetGenerator tg(
|
|
|
|
&l->second, static_cast<cmGlobalVisualStudio10Generator*>(
|
|
|
|
this->GetGlobalGenerator()));
|
|
|
|
tg.Generate();
|
|
|
|
}
|
2009-06-26 00:41:57 +04:00
|
|
|
}
|
|
|
|
this->WriteStampFiles();
|
|
|
|
}
|
|
|
|
|
2009-07-14 00:58:24 +04:00
|
|
|
|
|
|
|
void cmLocalVisualStudio10Generator
|
2014-02-22 04:05:55 +04:00
|
|
|
::ReadAndStoreExternalGUID(const std::string& name,
|
2009-07-14 00:58:24 +04:00
|
|
|
const char* path)
|
|
|
|
{
|
|
|
|
cmVS10XMLParser parser;
|
2012-08-13 21:42:58 +04:00
|
|
|
parser.ParseFile(path);
|
2012-04-16 18:07:19 +04:00
|
|
|
|
|
|
|
// if we can not find a GUID then create one
|
|
|
|
if(parser.GUID.empty())
|
|
|
|
{
|
|
|
|
this->GlobalGenerator->CreateGUID(name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-14 00:58:24 +04:00
|
|
|
std::string guidStoreName = name;
|
|
|
|
guidStoreName += "_GUID_CMAKE";
|
|
|
|
// save the GUID in the cache
|
|
|
|
this->GlobalGenerator->GetCMakeInstance()->
|
|
|
|
AddCacheEntry(guidStoreName.c_str(),
|
|
|
|
parser.GUID.c_str(),
|
|
|
|
"Stored GUID",
|
|
|
|
cmCacheManager::INTERNAL);
|
|
|
|
}
|
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
|
|
|
}
|