fix ODBC/MySQL header/library name

This commit is contained in:
Marian Krivos
2011-09-22 14:53:57 +00:00
parent e692f6e1a7
commit 59270fc991
2 changed files with 8 additions and 8 deletions

View File

@@ -72,15 +72,15 @@
#if !defined(POCO_NO_AUTOMATIC_LIBS) && !defined(MYSQL_EXPORTS)
#if defined(POCO_DLL)
#if defined(_DEBUG)
#pragma comment(lib, "PocoMySQLd.lib")
#pragma comment(lib, "PocoDataMySQLd.lib")
#else
#pragma comment(lib, "PocoMySQL.lib")
#pragma comment(lib, "PocoDataMySQL.lib")
#endif
#else
#if defined(_DEBUG)
#pragma comment(lib, "PocoMySQLmtd.lib")
#pragma comment(lib, "PocoDataMySQLmtd.lib")
#else
#pragma comment(lib, "PocoMySQLmt.lib")
#pragma comment(lib, "PocoDataMySQLmt.lib")
#endif
#endif
#endif

View File

@@ -81,15 +81,15 @@
#if !defined(POCO_NO_AUTOMATIC_LIBS) && !defined(ODBC_EXPORTS)
#if defined(POCO_DLL)
#if defined(_DEBUG)
#pragma comment(lib, "PocoODBCd.lib")
#pragma comment(lib, "PocoDataODBCd.lib")
#else
#pragma comment(lib, "PocoODBC.lib")
#pragma comment(lib, "PocoDataODBC.lib")
#endif
#else
#if defined(_DEBUG)
#pragma comment(lib, "PocoODBCmtd.lib")
#pragma comment(lib, "PocoDataODBCmtd.lib")
#else
#pragma comment(lib, "PocoODBCmt.lib")
#pragma comment(lib, "PocoDataODBCmt.lib")
#endif
#endif
#endif