summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio10Generator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2010-07-13 13:07:59 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2010-07-13 13:07:59 (GMT)
commit8507a73ea6e394b6ad42b7a2df562ee7b4bd4950 (patch)
tree714e19a3725fa2cbe747db397766f55090fd4b0e /Source/cmLocalVisualStudio10Generator.cxx
parent6327429f55949702f0d0c8e2888a9ae01910382b (diff)
downloadCMake-8507a73ea6e394b6ad42b7a2df562ee7b4bd4950.zip
CMake-8507a73ea6e394b6ad42b7a2df562ee7b4bd4950.tar.gz
CMake-8507a73ea6e394b6ad42b7a2df562ee7b4bd4950.tar.bz2
Fix for bug#10483, INCLUDE_EXTERNAL_MSPROJECT: ProjectGUID now ProjectGuid
Diffstat (limited to 'Source/cmLocalVisualStudio10Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio10Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio10Generator.cxx b/Source/cmLocalVisualStudio10Generator.cxx
index 8df0ffa..57d8653 100644
--- a/Source/cmLocalVisualStudio10Generator.cxx
+++ b/Source/cmLocalVisualStudio10Generator.cxx
@@ -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;
}