mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
BLE: require Qt 5.6 and suggest Qt 5.9.1
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
61fff71391
commit
4604b6a8de
1 changed files with 11 additions and 2 deletions
|
@ -216,9 +216,18 @@ if (BTSUPPORT AND "${Qt5Core_VERSION}" VERSION_LESS 5.4.0)
|
|||
list(REMOVE_ITEM QT_LIBRARIES Qt5::Bluetooth)
|
||||
endif()
|
||||
|
||||
#I can't test MacOS, and Windows Qt doesn't support BLE at all afaik
|
||||
# Windows Qt doesn't support BLE at all
|
||||
# Mac hasn't been tested, yet - so far it's disabled
|
||||
# the rest of them need at least 5.6 to be reasonable but really, you want 5.9.1
|
||||
if (BTSUPPORT AND (ANDROID OR CMAKE_SYSTEM_NAME STREQUAL "Linux"))
|
||||
set(BLESUPPORT ON)
|
||||
if ("${Qt5Core_VERSION}" VERSION_LESS 5.6.0)
|
||||
message(STATUS "Turning off BLE support as Qt version ${Qt5Core_VERSION} is insufficient for that")
|
||||
else()
|
||||
set(BLESUPPORT ON)
|
||||
if ("${Qt5Core_VERSION}" VERSION_LESS 5.9.1)
|
||||
message(STATUS "BLE support has been enabled, but for best results you really want Qt 5.9.1")
|
||||
endif()
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(BTSUPPORT)
|
||||
|
|
Loading…
Reference in a new issue