aboutsummaryrefslogtreecommitdiff
path: root/readme.md
blob: 114a8466c232fd18cc88729bbb4aa4eca3f29d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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`