Browse Source

Disable HIDAPI libusb support on FreeBSD in CI

It looks like we're expecting a newer version of libusb than is installed on our VM image. Disabling pending further investigation.
Sam Lantinga 1 year ago
parent
commit
6b8b9af88a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      .github/workflows/vmactions.yml

+ 1 - 0
.github/workflows/vmactions.yml

@@ -52,6 +52,7 @@ jobs:
           cmake -S . -B build -GNinja \
             -Wdeprecated -Wdev -Werror \
             -DCMAKE_BUILD_TYPE=Release \
+            -DSDL_HIDAPI_LIBUSB=OFF \
             -DSDL_CHECK_REQUIRED_INCLUDES="/usr/local/include" \
             -DSDL_CHECK_REQUIRED_LINK_OPTIONS="-L/usr/local/lib"
           cmake --build build/ --config Release --verbose -- -j`sysctl -n hw.ncpu`