aboutsummaryrefslogtreecommitdiff
path: root/readme.md
blob: fb47fca709a506e152024ecf7561165cf9ba125c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Simple Asteroids Clone

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. MSVC is not supported.

## Building

This project is built with [CMake](https://cmake.org). On Windows, CMake must be manually configured to locate the include and library paths for SDL2.

Simplest way to build on most \*nix systems:

	1. `mkdir build && cd build`

	2. `cmake ..`

	3. `make`