aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 2076702f318703faf0228847657fb464295aafc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Simple Asteroids clone in C as an exercise in game development.

* Requires [SDL2](https://libsdl.org) for input and drawing.

* Compiles with gcc or clang. Can compile on Windows with clang or mingw. Visual Studio is not supported.

In order to compile, the SDL2 development libraries are needed.

### Linux

#### APT (Debian, Ubuntu, Raspbian)

`sudo apt update`
`sudo apt install libsdl2-dev`

#### Yum (Red Hat, Fedora, CentOS)

`sudo yum install SDL2-devel`

#### Pacman (Arch)

`sudo pacman -S sdl2`