This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-06 19:58:48 +00:00
|
|
|
#!/bin/bash -ex
|
2017-08-04 10:11:47 +00:00
|
|
|
|
|
|
|
apt-get update
|
2018-06-07 19:42:12 +00:00
|
|
|
apt-get install --no-install-recommends -y build-essential git libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget cmake ninja-build
|
2018-01-13 21:37:06 +00:00
|
|
|
|
|
|
|
cd /yuzu
|
2017-08-04 10:11:47 +00:00
|
|
|
|
|
|
|
mkdir build && cd build
|
2018-05-28 09:34:47 +00:00
|
|
|
cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release -G Ninja
|
|
|
|
ninja
|
2017-08-04 10:11:47 +00:00
|
|
|
|
|
|
|
ctest -VV -C Release
|