Preemptively fix line too long problem before tomorrow's dashboard has a chance to complain about it.

This commit is contained in:
David Cole 2010-02-12 15:01:37 -05:00
parent f48660fa85
commit a41345feca

View File

@ -2758,8 +2758,8 @@ void cmGlobalXCodeGenerator
this->CreateString(deploymentTarget)); this->CreateString(deploymentTarget));
} }
// put this last so it can override existing settings // Put this last so it can override existing settings
// Convert "CMAKE_XCODE_ATTRIBUTE_*" properties directly. // Convert "CMAKE_XCODE_ATTRIBUTE_*" variables directly.
{ {
std::vector<std::string> vars = this->CurrentMakefile->GetDefinitions(); std::vector<std::string> vars = this->CurrentMakefile->GetDefinitions();
for(std::vector<std::string>::const_iterator i = vars.begin(); for(std::vector<std::string>::const_iterator i = vars.begin();
@ -2768,7 +2768,8 @@ void cmGlobalXCodeGenerator
if(i->find("CMAKE_XCODE_ATTRIBUTE_") == 0) if(i->find("CMAKE_XCODE_ATTRIBUTE_") == 0)
{ {
buildSettings->AddAttribute(i->substr(22).c_str(), buildSettings->AddAttribute(i->substr(22).c_str(),
this->CreateString(this->CurrentMakefile->GetDefinition(i->c_str()))); this->CreateString(
this->CurrentMakefile->GetDefinition(i->c_str())));
} }
} }
} }