aboutsummaryrefslogtreecommitdiff

Simple Asteroids Clone

Simple Asteroids clone in C as an exercise in game development.

  • Requires SDL2 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. 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