diff options
author | Brad King <brad.king@kitware.com> | 2017-08-25 15:03:30 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-08-25 15:05:05 (GMT) |
commit | 53305ce5b067c4feaa91ffe0cc82b740af525b3f (patch) | |
tree | acd61ccf3939a437d4af460953649f2286aed418 /Source | |
parent | a749fcb3d0f788b85be0531ffe7e7ec2aaf7f9fa (diff) | |
parent | 9ecee256f85022028f1b46477d0e49cd1dfeb4a4 (diff) | |
download | CMake-53305ce5b067c4feaa91ffe0cc82b740af525b3f.zip CMake-53305ce5b067c4feaa91ffe0cc82b740af525b3f.tar.gz CMake-53305ce5b067c4feaa91ffe0cc82b740af525b3f.tar.bz2 |
Merge topic 'revert-xcode-9-new-buildsystem-support'
9ecee256 Xcode: Revert addition of "outputPaths" to custom command build phase
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1183
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 8f260ec..a2be883 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -1517,17 +1517,6 @@ void cmGlobalXCodeGenerator::AddCommandsToBuildPhase( makecmd += " all"; buildphase->AddAttribute("shellScript", this->CreateString(makecmd)); buildphase->AddAttribute("showEnvVarsInLog", this->CreateString("0")); - - cmXCodeObject* outputFiles = this->CreateObject(cmXCodeObject::OBJECT_LIST); - for (std::vector<cmCustomCommand>::const_iterator i = commands.begin(); - i != commands.end(); ++i) { - std::vector<std::string> const& outputs = i->GetOutputs(); - for (std::vector<std::string>::const_iterator j = outputs.begin(); - j != outputs.end(); ++j) { - outputFiles->AddObject(this->CreateString(*j)); - } - } - buildphase->AddAttribute("outputPaths", outputFiles); } void cmGlobalXCodeGenerator::CreateCustomRulesMakefile( |