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_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