diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-23 20:17:21 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-01-23 20:17:21 (GMT) |
commit | a588dbcba1f245dcf6ea33abb1e5ec50088bb09e (patch) | |
tree | 0e96d5da1acb0c046d33b932dc410437474d2aa5 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 1a31bb2056995dc3c3958ccfe4e4c10afd991a25 (diff) | |
download | CMake-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/cmLocalVisualStudio7Generator.cxx')
-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 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; |