summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-07-14 22:51:54 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-07-14 22:51:54 (GMT)
commite5ba0296c2d831222704070aa05e27c09bebee51 (patch)
treefc6d53baa4d0155d9c0d209d1a83ec2757e7261a /Source/cmGlobalXCodeGenerator.cxx
parent89a39b48c3e61840761641fbd942d190ef8822de (diff)
downloadCMake-e5ba0296c2d831222704070aa05e27c09bebee51.zip
CMake-e5ba0296c2d831222704070aa05e27c09bebee51.tar.gz
CMake-e5ba0296c2d831222704070aa05e27c09bebee51.tar.bz2
BUG: fix for bug 7316
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 9f1c50a..4ca55c5 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -452,7 +452,6 @@ cmGlobalXCodeGenerator::CreateXCodeSourceFile(cmLocalGenerator* lg,
lg->AppendFlags(flags, cmtarget.GetProperty("COMPILE_FLAGS"));
}
lg->AppendFlags(flags, sf->GetProperty("COMPILE_FLAGS"));
- cmSystemTools::ReplaceString(flags, "\"", "\\\"");
// Add per-source definitions.
this->AppendDefines(flags, sf->GetProperty("COMPILE_DEFINITIONS"), true);
@@ -1297,9 +1296,6 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmTarget& target,
this->CurrentLocalGenerator->
AppendFlags(defFlags,
this->CurrentMakefile->GetDefineFlags());
- cmSystemTools::ReplaceString(defFlags, "\"", "\\\"");
- cmSystemTools::ReplaceString(flags, "\"", "\\\"");
- cmSystemTools::ReplaceString(cflags, "\"", "\\\"");
// Add preprocessor definitions for this target and configuration.
std::string ppDefs;