diff options
author | Brad King <brad.king@kitware.com> | 2016-03-18 13:43:13 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-03-18 13:43:13 (GMT) |
commit | 9e5f914d86581958a1ae9c2df8ca67e6ba11a83f (patch) | |
tree | 3c554188b99e800c986c4b725c67ed59a8336296 /Source | |
parent | 908259084f139187af202aaf5c39052804d8969e (diff) | |
parent | a3bcf2aa2c1d37c769b0cb6da06b184db1d0c99b (diff) | |
download | CMake-9e5f914d86581958a1ae9c2df8ca67e6ba11a83f.zip CMake-9e5f914d86581958a1ae9c2df8ca67e6ba11a83f.tar.gz CMake-9e5f914d86581958a1ae9c2df8ca67e6ba11a83f.tar.bz2 |
Merge topic 'vs-remote-directory'
a3bcf2aa VS: Fix WinCE remote debugger tool per-config target name
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 3e5611b..abae564 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -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" |