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
|
|
|
|
2018-01-13 21:37:06 +00:00
|
|
|
cd /yuzu
|
2017-08-04 10:11:47 +00:00
|
|
|
|
|
|
|
mkdir build && cd build
|
2018-08-23 22:32:48 +00:00
|
|
|
cmake .. -G Ninja -DYUZU_USE_BUNDLED_UNICORN=ON -DYUZU_USE_QT_WEB_ENGINE=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ -DYUZU_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -DUSE_DISCORD_PRESENCE=ON
|
2018-05-28 09:34:47 +00:00
|
|
|
ninja
|
2017-08-04 10:11:47 +00:00
|
|
|
|
2018-08-31 18:08:03 +00:00
|
|
|
ccache -s
|
|
|
|
|
2017-08-04 10:11:47 +00:00
|
|
|
ctest -VV -C Release
|