From 75ecb0fd74251b4f557820fffedeff426d6f6e01 Mon Sep 17 00:00:00 2001 From: Simon Redman Date: Wed, 31 Jul 2024 23:53:09 +0000 Subject: [PATCH] Re-enabling bluetooth by default now https://bugs.kde.org/show_bug.cgi?id=482192 is fixed As discussed, re-enabling this for the next release (cherry picked from commit a3f681695446ecd1a0919d772a965c24e68bc2bd) 15cb4327 Re-enabling bluetooth by default now https://bugs.kde.org/show_bug.cgi?id=482192 is fixed Co-authored-by: Rob Emery --- core/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index 3e23b0bdd..613c738d7 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -12,7 +12,7 @@ option(MDNS_ENABLED "Use MDNS for device discovery" ON) add_subdirectory(backends/lan) add_subdirectory(backends/loopback) -option(BLUETOOTH_ENABLED "Bluetooth support for kdeconnect" OFF) +option(BLUETOOTH_ENABLED "Bluetooth support for kdeconnect" ON) if(BLUETOOTH_ENABLED) find_package(Qt6 ${QT_MIN_VERSION} REQUIRED COMPONENTS Bluetooth) add_subdirectory(backends/bluetooth)