构建 Qt 程序时,如何在 cmake 中使用以前的 qmake 标志?
When building Qt programs, how could I use former qmake flags in cmake?
在构建以前版本的 qtconnectivity 库时,官方网站说我可以使用 -native-win32-bluetooth
来启用原生蓝牙 API,就像 qmake -- -native-win32-bluetooth
,但是我在构建时如何使用这个标志带有 cmake 的新版本库?
既然你在谈论 CMake,我假设你在谈论 Qt 6。Qt 6 不再支持本机 Win32 蓝牙 API,另请参阅 https://doc-snapshots.qt.io/qt6-dev/whatsnew62.html:
Win32 backend was removed. As a consequence, there is no longer support for Qt Bluetooth using MinGW.
在构建以前版本的 qtconnectivity 库时,官方网站说我可以使用 -native-win32-bluetooth
来启用原生蓝牙 API,就像 qmake -- -native-win32-bluetooth
,但是我在构建时如何使用这个标志带有 cmake 的新版本库?
既然你在谈论 CMake,我假设你在谈论 Qt 6。Qt 6 不再支持本机 Win32 蓝牙 API,另请参阅 https://doc-snapshots.qt.io/qt6-dev/whatsnew62.html:
Win32 backend was removed. As a consequence, there is no longer support for Qt Bluetooth using MinGW.