mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 21:00:01 -05:00
BUG: fix for bug#3362 xml escapes on -D stuff for visual studio
This commit is contained in:
@@ -1020,7 +1020,7 @@ void cmLocalVisualStudio7Generator::OutputDefineFlags(const char* flags,
|
||||
// Double-quotes in the value of the definition must be escaped
|
||||
// with a backslash. The entire definition should be quoted in
|
||||
// the generated xml attribute to avoid confusing the VS parser.
|
||||
cmSystemTools::ReplaceString(define, "\"", "\\"");
|
||||
define = this->EscapeForXML(define.c_str());
|
||||
// if the define has something in it that is not a letter or a number
|
||||
// then quote it
|
||||
if(define.
|
||||
|
||||
Reference in New Issue
Block a user