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_script_mac.sh 574B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. # Need to build latest glbinding from source
  3. #GLBVER=`curl https://api.github.com/repos/hpicgs/glbinding/releases/latest | grep -m1 tag_name | cut -d\" -f4`
  4. #curl -L https://github.com/hpicgs/glbinding/archive/${GLBVER}.tar.gz | tar xzf -
  5. #cd glbinding-${GLBVER#v}
  6. # Need to use master until a fixed version is released
  7. git clone https://github.com/hpicgs/glbinding.git
  8. cd glbinding
  9. mkdir build
  10. cd build
  11. cmake ..
  12. make -j4
  13. sudo make install
  14. cd ..
  15. cd ..
  16. # Build OpenRaider and run the unit tests
  17. mkdir build && cd build && cmake .. && make -j 4 && make check