Skip to content

Commit

Permalink
Build on macOS with libusb support
Browse files Browse the repository at this point in the history
Fixes #2774 <#2774>
  • Loading branch information
rom1v committed Feb 17, 2022
1 parent 03705b8 commit 98152f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion app/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 98152f9

Please sign in to comment.