File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ message("Setup ${TARGET} v${PROJECT_VERSION}")
3030list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR} /cmake" )
3131
3232option (BCM43XX "Select the serial driver for bluetooth modules found on RaspberryPi's" OFF )
33- option (GATT_SUPPORT "Include GATT support" ON )
34- option (AUDIO_SUPPORT "Include audio sink/source support" ON )
33+ option (BLUETOOTH_GATT_SUPPORT "Include GATT support" OFF )
34+ option (BLUETOOTH_AUDIO_SUPPORT "Include audio sink/source support" OFF )
3535
3636find_package (Bluez5UtilHeaders REQUIRED)
3737find_package (BCM_HOST QUIET )
@@ -129,10 +129,10 @@ InstallCMakeConfig(
129129 TARGETS ${TARGET}
130130)
131131
132- if (GATT_SUPPORT )
132+ if (BLUETOOTH_GATT_SUPPORT )
133133 add_subdirectory (gatt)
134134endif ()
135135
136- if (AUDIO_SUPPORT )
136+ if (BLUETOOTH_AUDIO_SUPPORT )
137137 add_subdirectory (audio)
138138endif ()
You can’t perform that action at this time.
0 commit comments