ENH: @ must be escaped in xcode projects
This commit is contained in:
parent
4168dba9d9
commit
a3d4d549ba
|
@ -194,7 +194,7 @@ void cmXCodeObject::SetString(const char* s)
|
|||
cmSystemTools::ReplaceString(ss, "\"", "\\\"");
|
||||
bool needQuote = false;
|
||||
this->String = "";
|
||||
if(ss.find_first_of(" <>.+-=") != ss.npos)
|
||||
if(ss.find_first_of(" <>.+-=@") != ss.npos)
|
||||
{
|
||||
needQuote = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue