From 08e4d2dc5ec4c3ca9eca7d56bb380ae124088b06 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sat, 16 Sep 2017 20:13:36 -0700 Subject: [PATCH] cmake: enable BLE on Macs Signed-off-by: Dirk Hohndel --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1b3aff8a6..c7314fbcd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -220,9 +220,8 @@ if (BTSUPPORT AND "${Qt5Core_VERSION}" VERSION_LESS 5.4.0) endif() # 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")) +if (BTSUPPORT AND NOT CMAKE_SYSTEM_NAME STREQUAL "Windows") if ("${Qt5Core_VERSION}" VERSION_LESS 5.6.0) message(STATUS "Turning off BLE support as Qt version ${Qt5Core_VERSION} is insufficient for that") else()