Skip to content

draklaw/lair

Repository files navigation

Lair engine

Lair is a simple game engine designed to make small, game-jam like games.

Lair is in a early stage of development and should be considered a prototype. It is written in C++11 with a binding in python to ease fast prototyping of games.

Building

To build Lair, you will need

To build the python binding (Probably compeltly broken now), you will need

To compile the tests, you will also need

Compiling can be done with

mkdir some_build_dir && cd some_build_dir
cmake path_to_lair
make

You might need to tell CMake where to find the dependencies.

You can compile the demos with

make demo

And the tests with

make test