summaryrefslogtreecommitdiffstats
path: root/Source/cmXCodeObject.cxx
diff options
context:
space:
mode:
authorGregor Jasny <gjasny@googlemail.com>2015-04-09 09:04:35 (GMT)
committerGregor Jasny <gjasny@googlemail.com>2015-04-17 19:50:05 (GMT)
commit6693590f8144a905b423ca03fa8ed98df4468bae (patch)
treed4565f9126dc70692fbf5e0d04220271b827def7 /Source/cmXCodeObject.cxx
parenta6331eb851c132d3d0496e738886ad76e13a92a0 (diff)
downloadCMake-6693590f8144a905b423ca03fa8ed98df4468bae.zip
CMake-6693590f8144a905b423ca03fa8ed98df4468bae.tar.gz
CMake-6693590f8144a905b423ca03fa8ed98df4468bae.tar.bz2
Xcode: Refine quoting rules for Strings
$ and . do not need to be quoted, but brackets and * must be to not confuse the Xcode parser.
Diffstat (limited to 'Source/cmXCodeObject.cxx')
-rw-r--r--Source/cmXCodeObject.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx
index b9c41f3..e72d315 100644
--- a/Source/cmXCodeObject.cxx
+++ b/Source/cmXCodeObject.cxx
@@ -243,7 +243,7 @@ void cmXCodeObject::PrintString(std::ostream& os,std::string String)
bool needQuote =
(String.empty() ||
String.find("//") != String.npos ||
- String.find_first_of(" <>.+-=@$[],") != String.npos);
+ String.find_first_of(" <>+-*=@[](){},") != String.npos);
const char* quote = needQuote? "\"" : "";
// Print the string, quoted and escaped as necessary.