Здравствуйте. Столкнулся, казалось бы, с распространённой проблемой, но решить её так и не сумел
Использую компилятор MinGW 7.3.3 64-bit
Пользуясь документацией на офф. портале:
cd %QTDIR%\qtbase\src\plugins\sqldrivers
qmake -- MYSQL_INCDIR="C:/Program Files/MySQL/MySQL Connector C 6.1/include" MYSQL_LIBDIR="C:/Program Files/MySQL/MySQL Connector C 6.1/lib"
nmake sub-mysql
nmake install
If you are not using a Microsoft compiler, replace nmake with mingw32-make in the line above.
Вроде всё понятно, указал я путь нахождения IDE в консоле Qt:
cd D:\Qt\5.14.1\mingw73_64\plugins\sqldrivers
Затем вписываю вторую строку с указанием пути MySQL:
qmake -- MYSQL_INCDIR="D:/MySQL dir/include" MYSQL_LIBDIR="D:/MySQL dir/lib"
Выводит ошибку:
***Unknown option --MYSQL_INCDIR=D:/MySQL dir/include
Прбовал так:
qmake MYSQL_INCDIR="D:/MySQL dir/include" MYSQL_LIBDIR="D:/MySQL dir/lib"
Выводит следующее:
Usage: qmake [mode] [options] [files]
QMake has two modes, one mode for generating project files based on
some heuristics, and the other for generating makefiles. Normally you
shouldn't need to specify a mode, as makefile generation is the default
mode for qmake, but you may use this to test qmake on an existing project