summaryrefslogtreecommitdiffstats
path: root/Source/cmXCodeObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmXCodeObject.h')
-rw-r--r--Source/cmXCodeObject.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmXCodeObject.h b/Source/cmXCodeObject.h
index a3ca650..d69d8c0 100644
--- a/Source/cmXCodeObject.h
+++ b/Source/cmXCodeObject.h
@@ -19,7 +19,9 @@ public:
cmXCodeObject(PBXType ptype, Type type);
void SetString(const char* s)
{
- m_String = s;
+ m_String = "\"";
+ m_String += s;
+ m_String += "\"";
}
void AddAttribute(const char* name, cmXCodeObject* value)