diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-23 15:17:21 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-23 15:17:21 -0500 |
commit | a588dbcba1f245dcf6ea33abb1e5ec50088bb09e (patch) | |
tree | 0e96d5da1acb0c046d33b932dc410437474d2aa5 | |
parent | 1a31bb2056995dc3c3958ccfe4e4c10afd991a25 (diff) | |
download | cmake-a588dbcba1f245dcf6ea33abb1e5ec50088bb09e.tar.gz |
BUG: .lib from a .dll should go in m_LibraryOutputPath not m_ExecutableOutputPath
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 2 |
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; |