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
|
|
|
|
|
|
|
cd /citra
|
|
|
|
|
|
|
|
apt-get update
|
2018-05-13 05:38:18 +00:00
|
|
|
apt-get install -y build-essential libsdl2-dev qtbase5-dev libqt5opengl5-dev qtmultimedia5-dev qttools5-dev qttools5-dev-tools wget git ccache cmake
|
2017-08-04 10:11:47 +00:00
|
|
|
|
|
|
|
mkdir build && cd build
|
2018-04-15 22:42:58 +00:00
|
|
|
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ -DENABLE_QT_TRANSLATION=ON -DCITRA_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"} -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON
|
2017-08-04 10:11:47 +00:00
|
|
|
make -j4
|
|
|
|
|
|
|
|
ctest -VV -C Release
|