Reputation: 1071
Which MySQL connector package should I download, in order to build POCO C++ library ? There are two options at https://dev.mysql.com/downloads/connector/
Upvotes: 0
Views: 569
Reputation: 10756
Building it (at least on Windows and using CMake) you will most definitely need Connector/C for only this one gives you the mysql.h
and mysqlclient.lib
that the FindMySQL.cmake
refers to and tries to find. The C++ connector on the other hand does not give these required files.
Upvotes: 0