i using Qt 4.7.3 and mysql 5.5 , i need to build a driver mysql for qt , i see this link and get this error :
C:\QtSDK\QtSources\4.7.3\src\plugins\sqldrivers\mysql>qmake "INCLUDEPATH+=%mysql%\include" "LIBS+=%mysql%\lib\libmysql.lib" -o makefile mysql.pro
WARNING: (internal):1: Unescaped backslashes are deprecated.
WARNING: (internal):1: Unescaped backslashes are deprecated.
WARNING: (internal):1: Unescaped backslashes are deprecated.
what is the problem ??
mysql.pro file here
It is not an error, just a warning about a deprecated feature. Try to substitute the
\with/char.Probably the use of
\as path separator is now deprecated and at some point in the future the warning will become an error.