Fix for bug#10483, INCLUDE_EXTERNAL_MSPROJECT: ProjectGUID now ProjectGuid

This commit is contained in:
Bill Hoffman 2010-07-13 09:07:59 -04:00
parent 6327429f55
commit 8507a73ea6
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class cmVS10XMLParser : public cmXMLParser
{
return;
}
if(strcmp("ProjectGUID", name) == 0)
if(strcmp("ProjectGUID", name) == 0 || strcmp("ProjectGuid", name) == 0)
{
this->DoGUID = true;
}