diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-11-03 16:01:48 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-11-03 16:01:48 (GMT) |
commit | f60e16f8ab6c6216be885fb1dc36fd9e6871c5df (patch) | |
tree | 80ac91b1b47db2015d5b9a829fd05b50293c4dc9 /Source/cmLocalVisualStudio6Generator.cxx | |
parent | b7361dd04e755820254ab361ad3715d4ce565828 (diff) | |
download | CMake-f60e16f8ab6c6216be885fb1dc36fd9e6871c5df.zip CMake-f60e16f8ab6c6216be885fb1dc36fd9e6871c5df.tar.gz CMake-f60e16f8ab6c6216be885fb1dc36fd9e6871c5df.tar.bz2 |
BUG: fix for debug libs not using output path
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index 011f8cf..61cce39 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -882,7 +882,8 @@ void cmLocalVisualStudio6Generator::WriteDSPHeader(std::ostream& fout, const cha libDebug += ".lib"; } lib = cmSystemTools::ConvertToOutputPath(lib.c_str()); - + libDebug = cmSystemTools::ConvertToOutputPath(libDebug.c_str()); + if (j->second == cmTarget::GENERAL) { libOptions += " "; |