diff --git a/BUILD.md b/BUILD.md index f683be95..e32ab684 100644 --- a/BUILD.md +++ b/BUILD.md @@ -199,7 +199,7 @@ Install the packages with [Homebrew]: ```bash # runtime dependencies -brew install sdl2 ffmpeg +brew install sdl2 ffmpeg libusb # client build dependencies brew install pkg-config meson diff --git a/app/meson.build b/app/meson.build index 9ee38d5f..9cd009fe 100644 --- a/app/meson.build +++ b/app/meson.build @@ -74,7 +74,7 @@ if v4l2_support src += [ 'src/v4l2_sink.c' ] endif -usb_support = get_option('usb') and host_machine.system() == 'linux' +usb_support = get_option('usb') and host_machine.system() != 'windows' if usb_support src += [ 'src/usb/aoa_hid.c',