Some graphics using C++ / OpenGL
First, you'll need to install Git and CMake.
Open a command prompt and run :
git clone -j4 --recurse-submodules https://github.com/clbrunet/SomeGraphics.git && cd SomeGraphicscmake -B build && cmake --build build --parallel 4 && ./build/editor/SomeGraphicsEditorEnsure that you have Visual Studio installed, then run the following command :
cmake -B buildYou can now open the project solution file build/SomeGraphics.sln and press the start button.
Follow the MinGW-w64 installation instructions here, then run :
cmake -B build -G "MinGW Makefiles" && cmake --build build --parallel 4 && "./build/editor/SomeGraphicsEditor"