Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.08 KB

README.md

File metadata and controls

34 lines (21 loc) · 1.08 KB

GameKit

Build Status Documentation License

Description

GameKit is a library I made to avoid duplicating code in my projets.

It's a small game engine built on top of SDL2 and OpenGL.

Documentation

Linux packages

  • ArchLinux: gamekit-git (AUR)

How to compile

  • Dependencies:
    • A compiler with C++17 support
    • git and CMake
    • OpenGL >= 2.1
    • Linux users: Check your distribution repositories for packages.
  • Run cmake -B build . && cmake --build build -j8 && sudo cmake --install build
  • Or mkdir build && cd build && cmake .. && make -j8 && sudo make install (for old CMake versions)

License

The code is licensed under LGPL v2.1.