summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-07-26 08:11:44 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-07-27 19:57:29 (GMT)
commit72f43fa13ddb544f84891f14619e622baf29ae38 (patch)
treeacec27c6002dea9e9cb6f4de446c598fdbed3506 /Source/cmLocalVisualStudio7Generator.cxx
parent58811998fb63975cc92abab23044630bc11cd26d (diff)
downloadCMake-72f43fa13ddb544f84891f14619e622baf29ae38.zip
CMake-72f43fa13ddb544f84891f14619e622baf29ae38.tar.gz
CMake-72f43fa13ddb544f84891f14619e622baf29ae38.tar.bz2
cmLocalGenerator: Remove CreateCustomTargetsAndCommands method.
It loops over cmGeneratorTargets, but at the point it is called, there are no cmGeneratorTargets. This must be dead code.
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index bf82c87..f199a41 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -68,15 +68,6 @@ cmLocalVisualStudio7Generator::~cmLocalVisualStudio7Generator()
void cmLocalVisualStudio7Generator::AddHelperCommands()
{
- std::set<std::string> lang;
- lang.insert("C");
- lang.insert("CXX");
- lang.insert("RC");
- lang.insert("IDL");
- lang.insert("DEF");
- lang.insert("Fortran");
- this->CreateCustomTargetsAndCommands(lang);
-
// Now create GUIDs for targets
cmTargets &tgts = this->Makefile->GetTargets();