2017-10-06 14:58:48 -05:00
|
|
|
#!/bin/bash -ex
|
2017-08-04 05:11:47 -05:00
|
|
|
|
|
|
|
cd /citra
|
|
|
|
|
|
|
|
apt-get update
|
2017-12-15 02:07:31 -06:00
|
|
|
apt-get install -y build-essential libsdl2-dev qtbase5-dev libqt5opengl5-dev qttools5-dev qttools5-dev-tools libcurl4-openssl-dev libssl-dev wget git
|
2017-08-04 05:11:47 -05:00
|
|
|
|
|
|
|
# Get a recent version of CMake
|
2018-02-06 06:25:39 -06:00
|
|
|
wget https://cmake.org/files/v3.10/cmake-3.10.1-Linux-x86_64.sh
|
|
|
|
echo y | sh cmake-3.10.1-Linux-x86_64.sh --prefix=cmake
|
|
|
|
export PATH=/citra/cmake/cmake-3.10.1-Linux-x86_64/bin:$PATH
|
2017-08-04 05:11:47 -05:00
|
|
|
|
|
|
|
mkdir build && cd build
|
2018-01-18 10:36:32 -06:00
|
|
|
cmake .. -DUSE_SYSTEM_CURL=ON -DCMAKE_BUILD_TYPE=Release -DENABLE_QT_TRANSLATION=ON -DCITRA_ENABLE_COMPATIBILITY_REPORTING=${ENABLE_COMPATIBILITY_REPORTING:-"OFF"}
|
2017-08-04 05:11:47 -05:00
|
|
|
make -j4
|
|
|
|
|
|
|
|
ctest -VV -C Release
|