Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

travis_install_linux.sh 442B

12345678910111213141516
  1. #!/bin/bash
  2. sudo apt-get -qq -y install libsdl2-dev libsdl2-ttf-dev libalut-dev libpng12-dev zlib1g-dev cmake libglm-dev
  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; fi
  6. git clone https://github.com/hpicgs/glbinding.git
  7. cd glbinding
  8. cmake .
  9. make -j4
  10. sudo make install
  11. cd ..