diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-15 18:37:57 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-05 16:43:17 (GMT) |
commit | 4407eee01365d89d370d8e8b89f3ec0a65420046 (patch) | |
tree | 34e362c583f1186251912c6a32186278071860d4 /Source/cmGlobalGenerator.cxx | |
parent | a09c545d3a518d771b66b59f92821af3d55d7d4b (diff) | |
download | CMake-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/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 4a48b5d..27f860e 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1282,6 +1282,8 @@ bool cmGlobalGenerator::Compute() } } + this->AddExtraIDETargets(); + return true; } |