From 7e5c571cce1a0d5d4b9d8eadaf35b73f7a2b72ed Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 30 Sep 2009 16:02:58 -0400 Subject: [PATCH] Move OrderedTargetDependSet into VS superclass We move cmGlobalVisualStudio7Generator::OrderedTargetDependSet up to cmGlobalVisualStudioGenerator so it can be re-used for other VS versions. See issue #9568. --- Source/cmGlobalVisualStudio7Generator.cxx | 28 ----------------------- Source/cmGlobalVisualStudio7Generator.h | 11 --------- Source/cmGlobalVisualStudioGenerator.cxx | 28 +++++++++++++++++++++++ Source/cmGlobalVisualStudioGenerator.h | 11 +++++++++ 4 files changed, 39 insertions(+), 39 deletions(-) diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx index c69088280..0cc72cad1 100644 --- a/Source/cmGlobalVisualStudio7Generator.cxx +++ b/Source/cmGlobalVisualStudio7Generator.cxx @@ -658,34 +658,6 @@ bool cmGlobalVisualStudio7Generator::IsPartOfDefaultBuild(const char* project, return true; } -//---------------------------------------------------------------------------- -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[] = { diff --git a/Source/cmGlobalVisualStudio7Generator.h b/Source/cmGlobalVisualStudio7Generator.h index 918872686..363489ef9 100644 --- a/Source/cmGlobalVisualStudio7Generator.h +++ b/Source/cmGlobalVisualStudio7Generator.h @@ -92,11 +92,6 @@ public: ///! What is the configurations directory variable called? virtual const char* GetCMakeCFGInitDirectory() { return "$(OutDir)"; } - struct TargetCompare - { - bool operator()(cmTarget const* l, cmTarget const* r); - }; - protected: virtual const char* GetIDEVersion() { return "7.0"; } @@ -116,12 +111,6 @@ protected: virtual void WriteSLNHeader(std::ostream& fout); virtual void AddPlatformDefinitions(cmMakefile* mf); - class OrderedTargetDependSet: public std::multiset - { - public: - OrderedTargetDependSet(cmGlobalGenerator::TargetDependSet const&); - }; - virtual void WriteTargetsToSolution( std::ostream& fout, cmLocalGenerator* root, diff --git a/Source/cmGlobalVisualStudioGenerator.cxx b/Source/cmGlobalVisualStudioGenerator.cxx index f8c5575c3..bc6715148 100644 --- a/Source/cmGlobalVisualStudioGenerator.cxx +++ b/Source/cmGlobalVisualStudioGenerator.cxx @@ -726,3 +726,31 @@ bool cmGlobalVisualStudioGenerator::TargetIsFortranOnly(cmTarget& target) } return false; } + +//---------------------------------------------------------------------------- +bool +cmGlobalVisualStudioGenerator::TargetCompare +::operator()(cmTarget const* l, cmTarget const* r) const +{ + // 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; +} + +//---------------------------------------------------------------------------- +cmGlobalVisualStudioGenerator::OrderedTargetDependSet +::OrderedTargetDependSet(cmGlobalGenerator::TargetDependSet const& targets) +{ + for(cmGlobalGenerator::TargetDependSet::const_iterator ti = + targets.begin(); ti != targets.end(); ++ti) + { + this->insert(*ti); + } +} diff --git a/Source/cmGlobalVisualStudioGenerator.h b/Source/cmGlobalVisualStudioGenerator.h index 601836de5..c601cc4e8 100644 --- a/Source/cmGlobalVisualStudioGenerator.h +++ b/Source/cmGlobalVisualStudioGenerator.h @@ -74,6 +74,17 @@ protected: virtual bool VSLinksDependencies() const { return true; } virtual const char* GetIDEVersion() = 0; + + struct TargetCompare + { + bool operator()(cmTarget const* l, cmTarget const* r) const; + }; + class OrderedTargetDependSet: public std::multiset + { + public: + OrderedTargetDependSet(cmGlobalGenerator::TargetDependSet const&); + }; + private: void FixUtilityDependsForTarget(cmTarget& target); void CreateUtilityDependTarget(cmTarget& target);