cant find QtBluetooth folder in (C:\Qt\6.2.3\mingw_64\include) folder
-
Hi all:
i installed QT 5.15 then i installed 6.2.3 .
now I cant find QtBluetooth folder in (C:\Qt\6.2.3\mingw_64\include) folder but it exist in (C:\Qt\5.15.2\mingw81_64\include), and i cant build my project after adding QT += bluetooth in .pro file in my project it shows error (:-1: error: Project ERROR: Unknown module(s) in QT: bluetooth) , i think the reason is the folder not exist , or there is another reasons , please how can i get this folder and build my project ? -
If you look at https://doc.qt.io/qt-6/qtbluetooth-changes-qt6.html you can see:
Win32 backend has been removed. There will not be a working Bluetooth backend when Qt is built with mingw.
If you have a different opinion about this please open a bug report at: https://bugreports.qt.io/
-
As the documentation is mentioning the
win32
backend has been removed. This leaves only thewinrt
backend for Windows.Unfortunately
winrt
doesn't support MinGW as seen here: https://github.com/microsoft/cppwinrt/issues/1037