summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-02-14 21:35:33 (GMT)
committerBrad King <brad.king@kitware.com>2006-02-14 21:35:33 (GMT)
commit6c89a96b867854cc8b3839d85efcc7733c0ddba7 (patch)
treec956417e2e4b2ac548292883ace03b2df28d6f2b
parent916ea2bad28e5e7cd7c8290c522bfdc20754be5c (diff)
downloadCMake-6c89a96b867854cc8b3839d85efcc7733c0ddba7.zip
CMake-6c89a96b867854cc8b3839d85efcc7733c0ddba7.tar.gz
CMake-6c89a96b867854cc8b3839d85efcc7733c0ddba7.tar.bz2
BUG: Removed hard-coded linking to odbc32 and odbccp32.
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index dffae0a..3fc9593 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -779,7 +779,7 @@ void cmLocalVisualStudio7Generator::OutputBuildTool(std::ostream& fout,
extraLinkOptions.c_str()).c_str();
}
fout << "\"\n"
- << "\t\t\t\tAdditionalDependencies=\" odbc32.lib odbccp32.lib ";
+ << "\t\t\t\tAdditionalDependencies=\"";
this->OutputLibraries(fout, linkLibs);
fout << "\"\n";
temp = m_LibraryOutputPath;