{ "version": "2.0.0", "tasks": [ { "type": "cppbuild", "label": "Build simulation", "command": "g++", "args": [ "-g", "${workspaceFolder}/src/main.cpp", "-o", "${workspaceFolder}/main.exe", "-I", "${workspaceFolder}/include" ], "options": { "cwd": "${fileDirname}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true }, } ] }