summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio7Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-09-30 20:02:58 (GMT)
committerBrad King <brad.king@kitware.com>2009-09-30 20:02:58 (GMT)
commit7e5c571cce1a0d5d4b9d8eadaf35b73f7a2b72ed (patch)
treefab5be97d8a5d5682304f0140fefad83abe02117 /Source/cmGlobalVisualStudio7Generator.h
parentcc8c4a3f4fdc92a40d0ae5def0a113f860d11a8f (diff)
downloadCMake-7e5c571cce1a0d5d4b9d8eadaf35b73f7a2b72ed.zip
CMake-7e5c571cce1a0d5d4b9d8eadaf35b73f7a2b72ed.tar.gz
CMake-7e5c571cce1a0d5d4b9d8eadaf35b73f7a2b72ed.tar.bz2
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.
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.h')
-rw-r--r--Source/cmGlobalVisualStudio7Generator.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.h b/Source/cmGlobalVisualStudio7Generator.h
index 9188726..363489e 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<cmTarget*, TargetCompare>
- {
- public:
- OrderedTargetDependSet(cmGlobalGenerator::TargetDependSet const&);
- };
-
virtual void WriteTargetsToSolution(
std::ostream& fout,
cmLocalGenerator* root,