summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-01-23 20:17:21 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-01-23 20:17:21 (GMT)
commita588dbcba1f245dcf6ea33abb1e5ec50088bb09e (patch)
tree0e96d5da1acb0c046d33b932dc410437474d2aa5 /Source
parent1a31bb2056995dc3c3958ccfe4e4c10afd991a25 (diff)
downloadCMake-a588dbcba1f245dcf6ea33abb1e5ec50088bb09e.zip
CMake-a588dbcba1f245dcf6ea33abb1e5ec50088bb09e.tar.gz
CMake-a588dbcba1f245dcf6ea33abb1e5ec50088bb09e.tar.bz2
BUG: .lib from a .dll should go in m_LibraryOutputPath not m_ExecutableOutputPath
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index 9b7a8a7..bfd1851 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;