diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-01-26 20:43:49 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-01-26 20:43:49 (GMT) |
commit | 91578381e8316dab22b0608571f71b477bacf503 (patch) | |
tree | 7fa97f85e3a749c386d10f82db2b9d7829123d1c /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 19f977bad7261d9e8f8d6c5d2764c079d35cc014 (diff) | |
download | CMake-91578381e8316dab22b0608571f71b477bacf503.zip CMake-91578381e8316dab22b0608571f71b477bacf503.tar.gz CMake-91578381e8316dab22b0608571f71b477bacf503.tar.bz2 |
BUG: fix version number
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 4718974..50e65f9 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -1257,7 +1257,7 @@ cmLocalVisualStudio7Generator::WriteProjectStart(std::ostream& fout, { if (m_Version == 8) { - fout << "\tVersion=\"8.0\"\n"; + fout << "\tVersion=\"8.00\"\n"; } else { |