Skip to content

Compiling Tips

Peter Rust edited this page Mar 1, 2018 · 1 revision

Beast.c utilizes modern C features, so it can't be compiled with Visual Studio, which does not support modern C versions (C99 or newer).

I have successfully compiled it with gcc on macOS and on Windows (via msys2).

SDL Setup

This game relies on the SDL library. Normally this will be bundled with the game, but if you want to compile & run it from scratch, you'll need to download the SDL library and put it somewhere the compiler can find it.

Cloning, Compiling & Running

git clone https://github.com/prust/beast.c.git
cd beast.c
make
./beast

Clone this wiki locally