docker.sh 434 B

12345678910111213141516
  1. #!/bin/bash -ex
  2. apt-get update
  3. apt-get install -y build-essential git libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget
  4. # Get a recent version of CMake
  5. wget https://cmake.org/files/v3.10/cmake-3.10.1-Linux-x86_64.sh
  6. sh cmake-3.10.1-Linux-x86_64.sh --exclude-subdir --prefix=/ --skip-license
  7. cd /yuzu
  8. mkdir build && cd build
  9. cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release
  10. make -j4
  11. ctest -VV -C Release