diff options
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index a4d2258..8ccdb84 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -341,9 +341,6 @@ void cmGlobalVisualStudio7Generator } else { - if ((l->second.GetType() != cmTarget::INSTALL_FILES) - && (l->second.GetType() != cmTarget::INSTALL_PROGRAMS)) - { bool skip = false; if(l->first == "ALL_BUILD" ) { @@ -420,7 +417,6 @@ void cmGlobalVisualStudio7Generator this->WriteProject(fout, dspname, dir.c_str(),l->second); } } - } } } } @@ -476,8 +472,7 @@ void cmGlobalVisualStudio7Generator depcount++; } } - else if ((l->second.GetType() != cmTarget::INSTALL_FILES) - && (l->second.GetType() != cmTarget::INSTALL_PROGRAMS)) + else { const char *dspname = l->second.GetProperty("GENERATOR_FILE_NAME"); @@ -513,8 +508,7 @@ void cmGlobalVisualStudio7Generator this->WriteProjectConfigurations(fout, name.c_str(), true); } - else if ((l->second.GetType() != cmTarget::INSTALL_FILES) - && (l->second.GetType() != cmTarget::INSTALL_PROGRAMS)) + else { bool partOfDefaultBuild = this->IsPartOfDefaultBuild( root->GetMakefile()->GetProjectName(), |