From 0e14877e2a99b4ed57215b602ae2afad2632caa9 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Mon, 17 Sep 2007 15:59:50 -0400 Subject: ENH: fix for vs 8 --- Source/cmLocalVisualStudio7Generator.cxx | 4 ++-- 1 file 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(this->GlobalGenerator); fout << "\tName=\"" << projLabel << "\"\n"; - if(this->Version > 8) + if(this->Version >= 8) { fout << "\tProjectGUID=\"{" << gg->GetGUID(libName) << "}\"\n"; } -- cgit v0.12