BUG: Cannot remove quotes from defined flags.

This commit is contained in:
Brad King 2002-12-16 18:28:43 -05:00
parent 1ac5fb545f
commit 728d3da737

View File

@ -572,7 +572,8 @@ void cmLocalVisualStudio7Generator::OutputDefineFlags(std::ostream& fout)
define = defs.substr(pos+2);
done = true;
}
cmSystemTools::ReplaceString(define, "\"", "");
cmSystemTools::ReplaceString(define, "\"", """);
fout << define << ",";
if(!done)
{