diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2018-01-13 22:37:06 +0100 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2018-01-13 23:38:47 +0100 |
commit | f95789a0b3f881a17d854534244ad380389d0cb1 (patch) | |
tree | 25e233f7fb4624e7b0d62a5b64534f766e4e3f02 /.travis/macos/deps.sh | |
parent | yuzu: Update CONTRIBUTING.md. (diff) | |
download | yuzu-f95789a0b3f881a17d854534244ad380389d0cb1.tar yuzu-f95789a0b3f881a17d854534244ad380389d0cb1.tar.gz yuzu-f95789a0b3f881a17d854534244ad380389d0cb1.tar.bz2 yuzu-f95789a0b3f881a17d854534244ad380389d0cb1.tar.lz yuzu-f95789a0b3f881a17d854534244ad380389d0cb1.tar.xz yuzu-f95789a0b3f881a17d854534244ad380389d0cb1.tar.zst yuzu-f95789a0b3f881a17d854534244ad380389d0cb1.zip |
Diffstat (limited to '')
-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 |