1#!/bin/sh
2
3cd third_party/
4
5echo "==== Installing dependencies ===="
6
7if [ ! -d build ]; then
8mkdir build
9fi
10
11cd build
12cmake ../SDL2-2.0.8
13make -j
14cd ../..
15
16
17