From a3bcf2aa2c1d37c769b0cb6da06b184db1d0c99b Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 17 Mar 2016 09:37:01 -0400 Subject: [PATCH] VS: Fix WinCE remote debugger tool per-config target name Fix the DebuggerTool RemoteExecutable value added by commit a22f9967 (VS: Optionally generate remote directory for WinCE projects, 2016-02-15) to account for the configuration when computing the target name. --- Source/cmLocalVisualStudio7Generator.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 3e5611be9..abae564af 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\tEscapeForXML(exe) << "\"\n"