diff options
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio7Generator.cxx | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index c690882..0cc72ca 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -659,34 +659,6 @@ bool cmGlobalVisualStudio7Generator::IsPartOfDefaultBuild(const char* project, } //---------------------------------------------------------------------------- -bool -cmGlobalVisualStudio7Generator::TargetCompare -::operator()(cmTarget const* l, cmTarget const* r) -{ - // Make sure ALL_BUILD is first so it is the default active project. - if(strcmp(r->GetName(), "ALL_BUILD") == 0) - { - return false; - } - if(strcmp(l->GetName(), "ALL_BUILD") == 0) - { - return true; - } - return strcmp(l->GetName(), r->GetName()) < 0; -} - -//---------------------------------------------------------------------------- -cmGlobalVisualStudio7Generator::OrderedTargetDependSet -::OrderedTargetDependSet(cmGlobalGenerator::TargetDependSet const& targets) -{ - for(cmGlobalGenerator::TargetDependSet::const_iterator ti = - targets.begin(); ti != targets.end(); ++ti) - { - this->insert(*ti); - } -} - -//---------------------------------------------------------------------------- static cmVS7FlagTable cmVS7ExtraFlagTable[] = { // Precompiled header and related options. Note that the |