diff options
author | David Cole <david.cole@kitware.com> | 2010-02-12 20:01:37 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2010-02-12 20:01:37 (GMT) |
commit | a41345fecaed449216b181b4fbb9c94156d8e5a0 (patch) | |
tree | 12bce6ecbbb582b95e69a6a67be8c4e1807f3121 /Source/cmGlobalXCodeGenerator.cxx | |
parent | f48660fa8533a1e00217048372a3ebbfac52f8e5 (diff) | |
download | CMake-a41345fecaed449216b181b4fbb9c94156d8e5a0.zip CMake-a41345fecaed449216b181b4fbb9c94156d8e5a0.tar.gz CMake-a41345fecaed449216b181b4fbb9c94156d8e5a0.tar.bz2 |
Preemptively fix line too long problem before tomorrow's dashboard has a chance to complain about it.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 1ce274d..0d6e389 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -2758,8 +2758,8 @@ void cmGlobalXCodeGenerator this->CreateString(deploymentTarget)); } - // put this last so it can override existing settings - // Convert "CMAKE_XCODE_ATTRIBUTE_*" properties directly. + // Put this last so it can override existing settings + // Convert "CMAKE_XCODE_ATTRIBUTE_*" variables directly. { std::vector<std::string> vars = this->CurrentMakefile->GetDefinitions(); for(std::vector<std::string>::const_iterator i = vars.begin(); @@ -2768,7 +2768,8 @@ void cmGlobalXCodeGenerator if(i->find("CMAKE_XCODE_ATTRIBUTE_") == 0) { buildSettings->AddAttribute(i->substr(22).c_str(), - this->CreateString(this->CurrentMakefile->GetDefinition(i->c_str()))); + this->CreateString( + this->CurrentMakefile->GetDefinition(i->c_str()))); } } } |