2017-10-06 21:58:48 +02:00
|
|
|
#!/bin/bash -ex
|
2017-08-04 12:11:47 +02:00
|
|
|
|
|
|
|
cd /citra
|
|
|
|
|
|
|
|
apt-get update
|
2017-12-15 09:07:31 +01: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 12:11:47 +02:00
|
|
|
|
|
|
|
# Get a recent version of CMake
|
2018-02-06 13:25:39 +01: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 12:11:47 +02:00
|
|
|
|
|
|
|
mkdir build && cd build
|
2018-01-18 17:36:32 +01: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 12:11:47 +02:00
|
|
|
make -j4
|
|
|
|
|
|
|
|
ctest -VV -C Release
|