summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-02-14 20:35:34 (GMT)
committerBrad King <brad.king@kitware.com>2006-02-14 20:35:34 (GMT)
commitbd0b829ffb6bf540fb9d3938687705deea0532e2 (patch)
treedd3e19affb1bb9487c61d8e77a47cc31f6a96818 /Source/cmGlobalVisualStudio7Generator.cxx
parenteeab2c55ed0615032ae9935fc2e805feee689031 (diff)
downloadCMake-bd0b829ffb6bf540fb9d3938687705deea0532e2.zip
CMake-bd0b829ffb6bf540fb9d3938687705deea0532e2.tar.gz
CMake-bd0b829ffb6bf540fb9d3938687705deea0532e2.tar.bz2
BUG: Fixed generation of VS8 solution file to not be re-written when loaded by VS and to work with msbuild.
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio7Generator.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx
index fb96d36..e43263f 100644
--- a/Source/cmGlobalVisualStudio7Generator.cxx
+++ b/Source/cmGlobalVisualStudio7Generator.cxx
@@ -278,7 +278,6 @@ void cmGlobalVisualStudio7Generator::WriteSLNFile(std::ostream& fout,
std::string rootdir = root->GetMakefile()->GetStartOutputDirectory();
rootdir += "/";
bool doneAllBuild = false;
- bool doneCheckBuild = false;
bool doneRunTests = false;
bool doneInstall = false;
@@ -368,17 +367,6 @@ void cmGlobalVisualStudio7Generator::WriteSLNFile(std::ostream& fout,
doneAllBuild = true;
}
}
- if(l->first == CMAKE_CHECK_BUILD_SYSTEM_TARGET)
- {
- if(doneCheckBuild)
- {
- skip = true;
- }
- else
- {
- doneCheckBuild = true;
- }
- }
if(l->first == "INSTALL")
{
if(doneInstall)