summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-09-17 19:59:50 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-09-17 19:59:50 (GMT)
commit0e14877e2a99b4ed57215b602ae2afad2632caa9 (patch)
tree0f259355aa49612469e8b561e163f22c3e1779d2
parent4ee1ee1bd0d6b19feb5846bfeccdc39a90d52ac8 (diff)
downloadCMake-0e14877e2a99b4ed57215b602ae2afad2632caa9.zip
CMake-0e14877e2a99b4ed57215b602ae2afad2632caa9.tar.gz
CMake-0e14877e2a99b4ed57215b602ae2afad2632caa9.tar.bz2
ENH: fix for vs 8
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index 4893012..d7de459 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -609,7 +609,7 @@ void cmLocalVisualStudio7Generator::WriteConfiguration(std::ostream& fout,
// manifest tool to use a workaround for FAT32 file systems, which can cause
// an empty manifest to be embedded into the resulting executable.
// See CMake bug #2617.
- if ( this->Version > 8 )
+ if ( this->Version >= 8 )
{
fout << "\t\t\t<Tool\n\t\t\t\tName=\"VCManifestTool\"\n"
<< "\t\t\t\tUseFAT32Workaround=\"true\"\n"
@@ -1449,7 +1449,7 @@ cmLocalVisualStudio7Generator::WriteProjectStart(std::ostream& fout,
cmGlobalVisualStudio7Generator* gg =
static_cast<cmGlobalVisualStudio7Generator *>(this->GlobalGenerator);
fout << "\tName=\"" << projLabel << "\"\n";
- if(this->Version > 8)
+ if(this->Version >= 8)
{
fout << "\tProjectGUID=\"{" << gg->GetGUID(libName) << "}\"\n";
}