Merge topic 'vs-remote-directory'

a3bcf2aa VS: Fix WinCE remote debugger tool per-config target name
This commit is contained in:
Brad King 2016-03-18 09:43:13 -04:00 committed by CMake Topic Stage
commit 9e5f914d86
1 changed files with 2 additions and 1 deletions

View File

@ -1389,7 +1389,8 @@ void cmLocalVisualStudio7Generator::OutputDeploymentDebuggerTool(
"\t\t\t\tRegisterOutput=\"0\"\n"
"\t\t\t\tAdditionalFiles=\"\"/>\n"
;
std::string const exe = dir + std::string("\\") + target->GetFullName();
std::string const exe =
dir + std::string("\\") + target->GetFullName(config);
fout <<
"\t\t\t<DebuggerTool\n"
"\t\t\t\tRemoteExecutable=\"" << this->EscapeForXML(exe) << "\"\n"