{ "version": "2.0.0", "tasks": [ { "label": "Compile", "type": "shell", "command": "${workspaceFolder}\\build", "group": { "kind": "build", "isDefault": true }, "problemMatcher": ["$gcc"], "presentation": { "clear": true, // "revealProblems": "onProblem", // "close": false, // "showReuseMessage": true, } }, { "label": "Compile Release", "type": "shell", "command": "${workspaceFolder}\\build_release", "group": { "kind": "build" }, "problemMatcher": ["$gcc"], "presentation": { "clear": true, // "revealProblems": "onProblem", // "close": false, // "showReuseMessage": true, } } ] }