Xcode4: Requires more quoting of single quote char
Specifically in per-target and per-file compiler definition string values. The Preprocessor test now passes on Xcode 4 builds after this commit.
This commit is contained in:
parent
ee45a5dd5a
commit
0cf4fa578a
@ -3409,7 +3409,14 @@ void cmGlobalXCodeGenerator::AppendFlag(std::string& flags,
|
|||||||
{
|
{
|
||||||
if(*c == '\'')
|
if(*c == '\'')
|
||||||
{
|
{
|
||||||
flags += "\\\\'";
|
if (this->XcodeVersion >= 40)
|
||||||
|
{
|
||||||
|
flags += "'\\\\''";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
flags += "\\\\'";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if(*c == '\\')
|
else if(*c == '\\')
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user