diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-24 14:43:23 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-24 14:43:23 (GMT) |
commit | 0ba40b59c7dc4c00c11902bae20fb9f03bde4168 (patch) | |
tree | f4f9b380ff83aae36438d5dd6d0c6d73706b3fd3 /Source/cmGlobalVisualStudio71Generator.cxx | |
parent | 1ecd48ba67b2e0d02227f848468f9398ec183be2 (diff) | |
download | CMake-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.cxx | 12 |
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) |