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-21 21:46:46 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
cd /citra
|
|
|
|
|
|
|
|
mkdir build && cd build
|
2019-08-14 00:51:43 +00:00
|
|
|
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++
|
2018-08-23 22:32:48 +00:00
|
|
|
ninja
|
2017-10-21 21:46:46 +00:00
|
|
|
|
|
|
|
ctest -VV -C Release
|