OpenGL Rubiks Cube
Run the following:
mkdir build && cd build
cmake ..
make
Then run ./Cube from the build folder
Install the development packages for OpenGL, GLUT (or FreeGLUT) and GLEW (package names vary per distribution). Then run:
mkdir build && cd build
cmake ..
make
Run ./Cube from the build folder.
Use a terminal such as the Visual Studio Developer Command Prompt and ensure that the OpenGL, GLUT and GLEW development libraries are installed and visible to CMake. Then run:
mkdir build && cd build
cmake ..
cmake --build .
The resulting executable Cube.exe will be placed in the build directory.
