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
|
2017-12-15 08:07:31 +00: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 10:11:47 +00:00
|
|
|
|
|
|
|
# Get a recent version of CMake
|
2018-02-06 12:25:39 +00: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 10:11:47 +00:00
|
|
|
|
|
|
|
mkdir build && cd build
|
2018-01-18 16:36:32 +00: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 10:11:47 +00:00
|
|
|
make -j4
|
|
|
|
|
|
|
|
ctest -VV -C Release
|