mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 12:49:50 -05:00
BUG: Centralized generation of command line arguments in escaped form. This addresses bug#3786 for several platforms.
This commit is contained in:
@@ -223,12 +223,12 @@ void cmLocalVisualStudio6Generator::AddDSPBuildRule(cmTarget& tgt)
|
||||
std::string args;
|
||||
args = "-H";
|
||||
args += this->Convert(this->Makefile->GetHomeDirectory(),
|
||||
START_OUTPUT, SHELL, true);
|
||||
START_OUTPUT, UNCHANGED, true);
|
||||
commandLine.push_back(args);
|
||||
args = "-B";
|
||||
args +=
|
||||
this->Convert(this->Makefile->GetHomeOutputDirectory(),
|
||||
START_OUTPUT, SHELL, true);
|
||||
START_OUTPUT, UNCHANGED, true);
|
||||
commandLine.push_back(args);
|
||||
|
||||
std::string configFile =
|
||||
|
||||
Reference in New Issue
Block a user