Fix implied lib: PocoSQL... instead of PocoData... (#2116)

* Fix implied lib: PocoSQLODBC instead of PocoDataODBC

* Fix implied lib: PocoSQLMySQL instead of PocoDataMySQL
This commit is contained in:
zosrothko 2018-01-27 00:18:41 +01:00 committed by Aleksandar Fabijanic
parent 4130f1551e
commit af4bc94777
2 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@
//
#if defined(_MSC_VER)
#if !defined(POCO_NO_AUTOMATIC_LIBS) && !defined(MySQL_EXPORTS)
#pragma comment(lib, "PocoDataMySQL" POCO_LIB_SUFFIX)
#pragma comment(lib, "PocoSQLMySQL" POCO_LIB_SUFFIX)
#endif
#endif

View File

@ -61,7 +61,7 @@
//
#if defined(_MSC_VER)
#if !defined(POCO_NO_AUTOMATIC_LIBS) && !defined(ODBC_EXPORTS)
#pragma comment(lib, "PocoDataODBC" POCO_LIB_SUFFIX)
#pragma comment(lib, "PocoSQLODBC" POCO_LIB_SUFFIX)
#endif
#endif