2017-10-06 21:58:48 +02:00
|
|
|
#!/bin/bash -ex
|
2017-08-04 12:11:47 +02:00
|
|
|
|
|
|
|
apt-get update
|
2018-06-04 17:19:09 +02:00
|
|
|
apt-get install --no-install-recommends -y build-essential git libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget cmake ninja-build ccache
|
2018-01-13 22:37:06 +01:00
|
|
|
|
|
|
|
cd /yuzu
|
2017-08-04 12:11:47 +02:00
|
|
|
|
2018-06-04 17:19:09 +02:00
|
|
|
export PATH=/usr/lib/ccache:$PATH
|
|
|
|
ln -sf /usr/bin/ccache /usr/lib/ccache/cc
|
|
|
|
ln -sf /usr/bin/ccache /usr/lib/ccache/c++
|
2017-08-04 12:11:47 +02:00
|
|
|
mkdir build && cd build
|
2018-06-04 17:19:09 +02:00
|
|
|
ccache --show-stats > ccache_before
|
2018-05-28 11:34:47 +02:00
|
|
|
cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release -G Ninja
|
|
|
|
ninja
|
2018-06-04 17:19:09 +02:00
|
|
|
ccache --show-stats > ccache_after
|
|
|
|
diff -U100 ccache_before ccache_after || true
|
2017-08-04 12:11:47 +02:00
|
|
|
|
|
|
|
ctest -VV -C Release
|