Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 427 Bytes

File metadata and controls

22 lines (20 loc) · 427 Bytes

OpenGlEngine

Repository to learn how to create 3D game engine using OpenGl

Clone

$ git clone --recurse-submodules https://github.com/warriormaster12/OpenGlEngine.git

Or init submodules in already cloned repo:

$ git clone https://github.com/warriormaster12/OpenGlEngine.git
$ cd OpenGlEngine
$ git submodule init
$ git submodule update

Build

$ mkdir build
$ cd build
$ cmake ..
$ cmake --build .