A documentation of how I setup VS Code for running OpenGL Code.
It will:
1. Show the setup
2. Configure code runner so you can press "run" and a "Hello World" Window will be launched.
Code runner config:
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt -I C:\\glfw-3.3.8.bin.WIN64\\include -I C:\\glew-2.1.0\\include -L C:\\glfw-3.3.8.bin.WIN64\\lib-mingw-w64 -L C:\\glew-2.1.0\\lib\\Release\\x64 -lglfw3dll -lglew32 -lopengl32 && ./$fileNameWithoutExt",
Probably didn't catch that last part but I basically said it is for personal documentation as well Educational.