mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 07:08:38 -05:00
ENH: @ must be escaped in xcode projects
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user