Merge topic 'xcode-ARCHS-quoting'
a8ded53
Xcode: Quote string values containing '$' (#11244)0790af3
Xcode: Avoid trailing space in ARCHS list (#11244)
This commit is contained in:
commit
5968785b2f
|
@ -2726,12 +2726,14 @@ void cmGlobalXCodeGenerator
|
|||
buildSettings->AddAttribute("SDKROOT",
|
||||
this->CreateString(sysroot));
|
||||
std::string archString;
|
||||
const char* sep = "";
|
||||
for( std::vector<std::string>::iterator i =
|
||||
this->Architectures.begin();
|
||||
i != this->Architectures.end(); ++i)
|
||||
{
|
||||
archString += sep;
|
||||
archString += *i;
|
||||
archString += " ";
|
||||
sep = " ";
|
||||
}
|
||||
buildSettings->AddAttribute("ARCHS",
|
||||
this->CreateString(archString.c_str()));
|
||||
|
|
|
@ -236,7 +236,7 @@ void cmXCodeObject::PrintString(std::ostream& os) const
|
|||
// considered special by the Xcode project file parser.
|
||||
bool needQuote =
|
||||
(this->String.empty() ||
|
||||
this->String.find_first_of(" <>.+-=@") != this->String.npos);
|
||||
this->String.find_first_of(" <>.+-=@$") != this->String.npos);
|
||||
const char* quote = needQuote? "\"" : "";
|
||||
|
||||
// Print the string, quoted and escaped as necessary.
|
||||
|
|
Loading…
Reference in New Issue