// .vscode/tasks.json { "version": "2.0.0", "tasks": [ { "label": "build", "type": "shell", "command": "/usr/bin/clang++", "args": [ "-std=c++17", "-g", "${workspaceFolder}/new.cpp", "-o", "${workspaceFolder}/new" ], "group": { "kind": "build", "isDefault": true }, "problemMatcher": [ "$gcc" ] } ] }