diff options
Diffstat (limited to '.travis/macos/deps.sh')
-rwxr-xr-x | .travis/macos/deps.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.travis/macos/deps.sh b/.travis/macos/deps.sh index 30ec99b62..7dea80438 100755 --- a/.travis/macos/deps.sh +++ b/.travis/macos/deps.sh @@ -1,4 +1,10 @@ #!/bin/sh -ex brew update -brew install qt5 sdl2 dylibbundler p7zip +brew install dylibbundler p7zip qt5 sdl2 + +mkdir externals/unicorn +pushd externals/unicorn +git clone https://github.com/yuzu-emu/unicorn . +UNICORN_ARCHS=aarch64 ./make.sh macos-universal-no +popd |