summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-09-15 18:37:57 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-05 16:43:17 (GMT)
commit4407eee01365d89d370d8e8b89f3ec0a65420046 (patch)
tree34e362c583f1186251912c6a32186278071860d4 /Source/cmGlobalXCodeGenerator.cxx
parenta09c545d3a518d771b66b59f92821af3d55d7d4b (diff)
downloadCMake-4407eee01365d89d370d8e8b89f3ec0a65420046.zip
CMake-4407eee01365d89d370d8e8b89f3ec0a65420046.tar.gz
CMake-4407eee01365d89d370d8e8b89f3ec0a65420046.tar.bz2
cmGlobalGenerator: Call AddExtraIDETargets as a hook of Compute().
Relieve the Xcode generator of having to reimplement Compute().
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index e209b64..746e1a7 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -376,17 +376,6 @@ cmGlobalXCodeGenerator::CreateLocalGenerator(cmMakefile* mf)
return new cmLocalXCodeGenerator(this, mf);
}
-//----------------------------------------------------------------------------
-bool cmGlobalXCodeGenerator::Compute()
-{
- if (!cmGlobalGenerator::Compute())
- {
- return false;
- }
- this->AddExtraIDETargets();
- return true;
-}
-
void cmGlobalXCodeGenerator::AddExtraIDETargets()
{
std::map<std::string, std::vector<cmLocalGenerator*> >::iterator it;