Merge topic 'guid_vs_newname'

8507a73 Fix for bug#10483, INCLUDE_EXTERNAL_MSPROJECT: ProjectGUID now ProjectGuid
This commit is contained in:
Brad King 2010-07-20 15:59:34 -04:00 committed by CMake Topic Stage
commit efb2c1e695
1 changed files with 1 additions and 1 deletions

View File

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