Open Source Tomb Raider Engine
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

travis_install_linux.sh 476B

12345678910111213
  1. #!/bin/bash
  2. sudo apt-get -qq -y install libsdl2-dev libsdl2-ttf-dev libalut-dev libpng12-dev cmake
  3. if [ "$CC" = "gcc" ]; then sudo apt-get install gcc-4.8; fi
  4. if [ "$CXX" = "g++" ]; then sudo apt-get install g++-4.8; fi
  5. if [ "$CXX" = "clang++" ]; then sudo apt-get install --allow-unauthenticated clang-3.5 libc++-dev; fi
  6. wget 'http://downloads.sourceforge.net/project/ogl-math/glm-0.9.6.3/glm-0.9.6.3.zip'
  7. unzip glm-0.9.6.3.zip
  8. sudo cp -R glm/glm /usr/local/include/glm