mirror of
https://github.com/Kitware/CMake.git
synced 2026-07-13 19:11:23 +00:00
Fix for bug#10483, INCLUDE_EXTERNAL_MSPROJECT: ProjectGUID now ProjectGuid
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user