diff options
author | Brad King <brad.king@kitware.com> | 2021-09-29 13:56:13 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-09-29 13:57:00 (GMT) |
commit | 84673a8243be99af56573a7952235ffae956b1e0 (patch) | |
tree | f2915c0d87cbdb8d83328eee6ab5e5679ab46615 | |
parent | a0742049860485dc5b0f2b1b6b81d6a1ff172073 (diff) | |
parent | b8a2ce048416c5a4582a4956a7f9039423d72c44 (diff) | |
download | CMake-84673a8243be99af56573a7952235ffae956b1e0.zip CMake-84673a8243be99af56573a7952235ffae956b1e0.tar.gz CMake-84673a8243be99af56573a7952235ffae956b1e0.tar.bz2 |
Merge topic 'xcode-dead-code'
b8a2ce0484 cmGlobalXCodeGenerator: Remove dead buildsystem version check
Acked-by: Kitware Robot <kwrobot@kitware.com>
Reviewed-by: Raul Tambre <raul@tambre.ee>
Merge-request: !6568
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index d61d373..f34ef62 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -1756,9 +1756,6 @@ void cmGlobalXCodeGenerator::CreateCustomCommands( if (sourceFile->GetCustomCommand() && visited.insert(sourceFile).second) { commands.push_back(*sourceFile->GetCustomCommand()); - if (this->XcodeBuildSystem >= BuildSystem::Twelve) { - this->CustomCommandRoots[sourceFile].insert(gtgt); - } } } // create custom commands phase |