Files
yuzu/.travis/linux/docker.sh
bunnei 80a16b808f frontend: qt: Disable web browser applet implementation.
- Despite being partially working, this has no functional value and causes more user issues.
- Disable for now, while we rework the original implementation.
2020-11-06 23:24:47 -08:00

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