This is just a simple example in OpenGL with a cube which rotates on its y-axis.
This is a cmake project so cmake must be installed to compile this project.
First, create a build directory and change into it.
mkdir -v build && cd buildThen, run cmake over the parent directory as it contains the CMakeLists.txt project file.
cmake ..Now, simply run make to create the final program executable. The final executable cube will get created in the same build directory.
makeExecute the executable cube to run the calculator.
./cubeThis project is under MIT License