Added Astaroth 2.0

This commit is contained in:
jpekkila
2019-06-14 14:18:35 +03:00
parent 4e4f84c8ff
commit 0e48766a68
87 changed files with 18058 additions and 1 deletions

17
3rdparty/setup_dependencies.sh vendored Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
INITIAL_DIR=$(pwd)
# Fetch SDL2
git clone https://github.com/davidsiaw/SDL2.git
cd SDL2
git pull
mkdir build
cd build && cmake .. && make -j
# See https://github.com/davidsiaw/SDL2/blob/master/docs/README-linux.md
# if there are isses with building
# Done
cd $INITIAL_DIR