summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio71Generator.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-02-24 14:43:23 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-02-24 14:43:23 (GMT)
commit0ba40b59c7dc4c00c11902bae20fb9f03bde4168 (patch)
treef4f9b380ff83aae36438d5dd6d0c6d73706b3fd3 /Source/cmGlobalVisualStudio71Generator.cxx
parent1ecd48ba67b2e0d02227f848468f9398ec183be2 (diff)
downloadCMake-0ba40b59c7dc4c00c11902bae20fb9f03bde4168.zip
CMake-0ba40b59c7dc4c00c11902bae20fb9f03bde4168.tar.gz
CMake-0ba40b59c7dc4c00c11902bae20fb9f03bde4168.tar.bz2
COMP: Handle preinstall properly on IDEs
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio71Generator.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx
index 13d08a0..ad31d5a 100644
--- a/Source/cmGlobalVisualStudio71Generator.cxx
+++ b/Source/cmGlobalVisualStudio71Generator.cxx
@@ -59,7 +59,6 @@ void cmGlobalVisualStudio71Generator::WriteSLNFile(std::ostream& fout,
bool doneEditCache = false;
bool doneRebuildCache = false;
bool donePackage = false;
- bool donePreInstall = false;
// For each cmMakefile, create a VCProj for it, and
// add it to this SLN file
@@ -169,17 +168,6 @@ void cmGlobalVisualStudio71Generator::WriteSLNFile(std::ostream& fout,
doneInstall = true;
}
}
- if(l->first == "preinstall")
- {
- if(donePreInstall)
- {
- skip = true;
- }
- else
- {
- donePreInstall = true;
- }
- }
if(l->first == "RUN_TESTS")
{
if(doneRunTests)