Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 702 Bytes

README.md

File metadata and controls

26 lines (24 loc) · 702 Bytes

learnopengl

some SDL2/OpenGL code based on learnopengl, to learn about new OpenGL design.

Depends on:

Building information

$ cd /path/to/learnopengl
$ mkdir debug  # or release
$ cd debug     # or release
$ # for Windows ...
$ cmake .. -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug # or Release
$ # or for Linux
$ cmake .. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug  # or Release
$ make
$ make install
$ cd ../bin
$ # Enjoy !