I want to run c++ code with OpenGL library (GLFW, GL, etc). I'd like to know if there is a build properties (linker) like in CodeBlocks. If there's not one, how could i run easly code with OpenGL library on vscode
Asked
Active
Viewed 22 times
0
-
You need to edit your tasks.json if you are using the default building. This documentation describes the 3 json files: [https://code.visualstudio.com/docs/cpp/config-mingw](https://code.visualstudio.com/docs/cpp/config-mingw) You also most likely want to use msys2 to install your mingw and use its built in package management to install your libraries if you are on windows. – drescherjm Mar 09 '22 at 14:07