715 B
715 B
Spectre 2D Engine
A simple 2D Game engine from scratch!
Compiling
This project uses cmake build system (Version 3.15 or greater) to compile the engine.
Linux with make.
$ mkdir build
$ cd build
$ cmake .. -G "Unix Makefiles"
$ make
Windows using NMake
$ mkdir build
$ cd build
$ cmake .. -G "NMake Makefiles"
$ nmake
Or the best way (in my opinion)
install Ninja and run
$ mkdir build
$ cd build
$ cmake .. -G Ninja
$ ninja
The build will produce spectre.lib in the build directory that
should be used when linking.
Author
Henrik Hautakoski - henrik.hautakoski@gmail.com