/opengl-template

simple opengl template

Primary LanguageCMakeMIT LicenseMIT

OpenGL sample project

Clone

To checkout the code, clone the repo recursively to get all the submodules:

git clone --recursive repo-url

Or do it manually:

git submodule update --init --recursive

Build

For Windows under the visual studio command prompt:

cd build
..\src\cnmake.bat ..\src
nmake

Or:

cd build
cmake ..\src
cmake --build . --config Release