Skip to content

Latest commit

 

History

History
33 lines (17 loc) · 711 Bytes

README.md

File metadata and controls

33 lines (17 loc) · 711 Bytes

Holo::RPG

Project using javidx9's olcPixelGameEngine for practice with game design patterns and game development

Building

Building is based on Moros1138's pge-template-project CMake files

Arch Linux

Install the required packages with the following command

sudo pacman -Sy base-devel cmake git libpng mesa

Generate project makefiles with CMake

cmake .

And build the project

make

Windows

Install a C++ compiler like MinGW

Generate project makefiles with CMake

cmake . -G "MinGW Makefiles"

And build the project

mingw32-make