1
1
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

935 B

A computer game

Developemnt Blog

image

Prebuilt Binary

See the releases tab.

On linux, you will need to install the SDL2 package from your package maintainer.

Fedora

sudo dnf install SDL2

Build Instructions

On Linux

Install the libSDL2 runtime and SDL2 development packages from your package distributor. On Fedora, this is the SDL2 and SDL2-devel packages.

git clone --recurse-submodules https://git.topost.net/alistair/space_game.git

For Linux

make clean
make target=linux

For Windows

You have to have mingw and the mingw libsdl library (I think).

Run setup.sh to download the SDL2 static libraries and SDL2.dll.

./setup.sh
make clean
make target=windows

With debug flags

Append debug=true to the make command.