Open source game engine written in C++
This project is licensed under the MIT License - see the LICENSE file for details
- Install CMake
- Download SDL2 and GLEW development libraries
- It is recommended you create a folder called
ThirdPartyand place the folders in there. This will make it easier for CMake to find them. - Rename folder
SDL-2.X.XtoSDL2 - Rename folder
glew-2.X.XtoGLEW
- It is recommended you create a folder called
- Run CMake and Make
- Other makefile generators may work as well, but MinGW has been tested
cd Build cmake -G "MinGW Makefiles" .. mingw32-make - Install dependencies
sudo apt install cmake libsdl2-dev libglew-dev - Run CMake and Make
cd Build cmake .. make