summaryrefslogtreecommitdiffstats
path: root/Source/cmXCodeObject.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-02-02 22:16:07 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2005-02-02 22:16:07 (GMT)
commit68c419c780a954c48a91291fbc1dcf038d99e7f3 (patch)
tree5c9fb3ca07ff9bfe819b1abb12c20a52cdec433c /Source/cmXCodeObject.h
parenta9af1c23efa81fd6386904c61386bb45e380348c (diff)
downloadCMake-68c419c780a954c48a91291fbc1dcf038d99e7f3.zip
CMake-68c419c780a954c48a91291fbc1dcf038d99e7f3.tar.gz
CMake-68c419c780a954c48a91291fbc1dcf038d99e7f3.tar.bz2
ENH: getting closer
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)