- Despite being partially working, this has no functional value and causes more user issues. - Disable for now, while we rework the original implementation.
12 lines
360 B
Bash
12 lines
360 B
Bash
#!/bin/bash -ex
|
|
|
|
cd /yuzu
|
|
|
|
mkdir build && cd build
|
|
cmake .. -G Ninja -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
|
|
ninja
|
|
|
|
ccache -s
|
|
|
|
ctest -VV -C Release
|