summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2023-06-08 10:33:07 +0200
committerGitHub <noreply@github.com>2023-06-08 10:33:07 +0200
commit83e1a99a96a7e06dce84a15c43e0b705eae65ef1 (patch)
tree689b545ab477468459bc5b320ad0c526460cd56e
parent878f26548e484d05a36e9bbe8196148418c9f42d (diff)
Change default BULK to OFF on windows
This matches our CI configuration. BULK USB can't be used on Windows without installing additional drivers for security reasons.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 74fc0cef53..141925bd20 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2769,7 +2769,7 @@ if(HID)
endif()
# USB Bulk controller support
-default_option(BULK "USB Bulk controller support" "LibUSB_FOUND")
+default_option(BULK "USB Bulk controller support" "LibUSB_FOUND;NOT WIN32")
if(BULK)
if(NOT LibUSB_FOUND)
message(FATAL_ERROR "USB Bulk controller support requires libusb 1.0 and its development headers.")