summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio6Generator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-09-30 20:03:09 (GMT)
committerBrad King <brad.king@kitware.com>2009-09-30 20:03:09 (GMT)
commit51ba120844038017593106df8cb6f1f2cad3fb12 (patch)
tree23d5cfb151550b02ba46567309add37b356d094b /Source/cmLocalVisualStudio6Generator.h
parent55eec2a5bf2994c22cdd184e6e4bf38655e5f091 (diff)
downloadCMake-51ba120844038017593106df8cb6f1f2cad3fb12.zip
CMake-51ba120844038017593106df8cb6f1f2cad3fb12.tar.gz
CMake-51ba120844038017593106df8cb6f1f2cad3fb12.tar.bz2
Remove unused members of local VS 6 generator
The commit "Use target dependency closure for VS 6 solutions" removed use of the CreatedProjectNames list, so we remove it.
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.h')
-rw-r--r--Source/cmLocalVisualStudio6Generator.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.h b/Source/cmLocalVisualStudio6Generator.h
index 2cb19dd..7279869 100644
--- a/Source/cmLocalVisualStudio6Generator.h
+++ b/Source/cmLocalVisualStudio6Generator.h
@@ -49,14 +49,6 @@ public:
*/
void SetBuildType(BuildType, const char* libName, cmTarget&);
- /**
- * Return array of created DSP names in a STL vector.
- * Each executable must have its own dsp.
- */
- std::vector<std::string> GetCreatedProjectNames()
- {
- return this->CreatedProjectNames;
- }
virtual std::string GetTargetDirectory(cmTarget const& target) const;
void GetTargetObjectFileDirectories(cmTarget* target,
std::vector<std::string>&
@@ -64,8 +56,7 @@ public:
private:
std::string DSPHeaderTemplate;
std::string DSPFooterTemplate;
- std::vector<std::string> CreatedProjectNames;
-
+
void CreateSingleDSP(const char *lname, cmTarget &tgt);
void WriteDSPFile(std::ostream& fout, const char *libName,
cmTarget &tgt);