Ещё раз прошу о помощи. Подобные вопросы обсуждали много раз.
Вот это меня приводи в недоумение:
If you copy MySQL library and header files directly to the MinGW's lib and inlude directories respectively, the next Qt build will be a bit easier.
This section assumes that MySQL is installed in C:\MySQL, MinGW is installed in C:\MinGW and C:\MinGW\bin is included in PATH environment variable.
Open the command prompt and issue these commands:
cd C:\MySQL\lib
reimp -d libmysql.lib
dlltool -k --input-def libmysql.def --dllname libmysql.dll --output-lib C:\MinGW\lib\libmysql.a
and copy contents of MySQL's include directory to C:\MinGW\include.
Now when you build Qt, you don't have to specify the any paths to MySQL. So you can simply invoke:
configure -qt-sql-mysql -qt-sql-odbc -qt-sql-sqlite ...
You can use the same method for other libraries.
Что первично? Сперва надо драйвера своять, потом конфигурировать или же как-то по-другому???