diff options
author | Brad King <brad.king@kitware.com> | 2009-09-07 14:11:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-07 14:11:20 (GMT) |
commit | 355511ade9fd1be71835359a9b085586446e50c2 (patch) | |
tree | 9f414f4b3c4e45a93ae9e2eb9b859638b4d3d282 /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | f143dc2af2c65dcac3434fd531794a79e313ec01 (diff) | |
download | CMake-355511ade9fd1be71835359a9b085586446e50c2.zip CMake-355511ade9fd1be71835359a9b085586446e50c2.tar.gz CMake-355511ade9fd1be71835359a9b085586446e50c2.tar.bz2 |
Do Windows command line escapes for VS 10 too
Until now the VS 10 generator did no Windows command-line escaping and
just did XML escapes. This commit teaches the generator to use the same
command-line escape addition code used by other generators. The script
construction method cmLocalVisualStudioGenerator::ConstructScript need
not do XML escapes. Each VS generator version adds the XML escapes
necessary for that version.
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.cxx | 35 |
1 files changed, 23 insertions, 12 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 2a96932..e8aaf61 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -27,6 +27,13 @@ #include "cmVS10LinkFlagTable.h" #include "cmVS10LibFlagTable.h" +static std::string cmVS10EscapeXML(std::string arg) +{ + cmSystemTools::ReplaceString(arg, "&", "&"); + cmSystemTools::ReplaceString(arg, "<", "<"); + cmSystemTools::ReplaceString(arg, ">", ">"); + return arg; +} cmVisualStudio10TargetGenerator:: cmVisualStudio10TargetGenerator(cmTarget* target, @@ -289,12 +296,14 @@ cmVisualStudio10TargetGenerator::WriteCustomRule(cmSourceFile* source, for(std::vector<std::string>::iterator i = configs->begin(); i != configs->end(); ++i) { - std::string script = - lg->ConstructScript(command.GetCommandLines(), - command.GetWorkingDirectory(), - i->c_str(), - command.GetEscapeOldStyle(), - command.GetEscapeAllowMakeVars()); + std::string script = + cmVS10EscapeXML( + lg->ConstructScript(command.GetCommandLines(), + command.GetWorkingDirectory(), + i->c_str(), + command.GetEscapeOldStyle(), + command.GetEscapeAllowMakeVars()) + ); this->WritePlatformConfigTag("Message",i->c_str(), 3); (*this->BuildFileStream ) << comment << "</Message>\n"; this->WritePlatformConfigTag("Command", i->c_str(), 3); @@ -1202,12 +1211,14 @@ void cmVisualStudio10TargetGenerator::WriteEvent( comment += lg->ConstructComment(command); script += pre; pre = "\n"; - script += - lg->ConstructScript(command.GetCommandLines(), - command.GetWorkingDirectory(), - configName.c_str(), - command.GetEscapeOldStyle(), - command.GetEscapeAllowMakeVars()); + script += + cmVS10EscapeXML( + lg->ConstructScript(command.GetCommandLines(), + command.GetWorkingDirectory(), + configName.c_str(), + command.GetEscapeOldStyle(), + command.GetEscapeAllowMakeVars()) + ); } this->WriteString("<Message>",3); (*this->BuildFileStream ) << comment << "</Message>\n"; |