diff options
author | Brad King <brad.king@kitware.com> | 2016-03-17 13:37:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-03-17 13:37:51 (GMT) |
commit | a3bcf2aa2c1d37c769b0cb6da06b184db1d0c99b (patch) | |
tree | e7dda14ff7ee37e05b41581e67b04bbafc420bda /Source/cmLocalVisualStudio7Generator.cxx | |
parent | a22f9967252eecbbd00c9adc1f07ecab9f15e53e (diff) | |
download | CMake-a3bcf2aa2c1d37c769b0cb6da06b184db1d0c99b.zip CMake-a3bcf2aa2c1d37c769b0cb6da06b184db1d0c99b.tar.gz CMake-a3bcf2aa2c1d37c769b0cb6da06b184db1d0c99b.tar.bz2 |
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.
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-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" |