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.
123456789 |
- #!/bin/bash
-
- sudo apt-get -qq -y install libsdl2-dev libsdl2-ttf-dev libalut-dev libpng12-dev zlib1g-dev cmake
-
- if [ "$CC" = "gcc" ]; then sudo apt-get install gcc-4.8; fi
- if [ "$CXX" = "g++" ]; then sudo apt-get install g++-4.8; fi
-
- if [ "$CXX" = "clang++" ]; then sudo apt-get install --allow-unauthenticated clang-3.5; fi
|