summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-01-23 15:17:21 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2004-01-23 15:17:21 -0500
commita588dbcba1f245dcf6ea33abb1e5ec50088bb09e (patch)
tree0e96d5da1acb0c046d33b932dc410437474d2aa5
parent1a31bb2056995dc3c3958ccfe4e4c10afd991a25 (diff)
downloadcmake-a588dbcba1f245dcf6ea33abb1e5ec50088bb09e.tar.gz
BUG: .lib from a .dll should go in m_LibraryOutputPath not m_ExecutableOutputPath
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index 9b7a8a7ea5..bfd1851996 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -566,7 +566,7 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
}
fout << "\t\t\t\tStackReserveSize=\""
<< m_Makefile->GetDefinition("CMAKE_CXX_STACK_SIZE") << "\"\n";
- temp = m_ExecutableOutputPath;
+ temp = m_LibraryOutputPath;
temp += configName;
temp += "/";
temp += libName;