nhamil / oasis

WIP Open Source Game Engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Oasis Engine

Open source game engine written in C++

License

This project is licensed under the MIT License - see the LICENSE file for details

Dependencies

Building

Windows with MinGW

  • Install CMake
  • Download SDL2 and GLEW development libraries
    • It is recommended you create a folder called ThirdParty and place the folders in there. This will make it easier for CMake to find them.
    • Rename folder SDL-2.X.X to SDL2
    • Rename folder glew-2.X.X to GLEW
  • Run CMake and Make
    • Other makefile generators may work as well, but MinGW has been tested
cd Build 
cmake -G "MinGW Makefiles" .. 
mingw32-make

Linux (Ubuntu)

  • Install dependencies
sudo apt install cmake libsdl2-dev libglew-dev 
  • Run CMake and Make
cd Build
cmake .. 
make 

About

WIP Open Source Game Engine

License:MIT License


Languages

Language:C++ 95.8%Language:CMake 3.1%Language:C 1.0%