docker.sh 452 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 ninja-build
  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 -G Ninja
  10. ninja
  11. ctest -VV -C Release