{ "version": "2.0.0", "tasks": [ { "label": "Make Build", "type": "shell", "command": "make -s -j 10 all", "options": { "cwd": "${workspaceRoot}", "shell": { "executable": "cmd.exe", "args": [ "/C" ] } }, "group": { "kind": "build", "isDefault": true }, "problemMatcher": [ "$gcc" ] }, { "label": "Make Clean", "type": "shell", "command": "make -s clean", "options": { "cwd": "${workspaceRoot}", "shell": { "executable": "cmd.exe", "args": [ "/C" ] } }, "group": { "kind": "build", "isDefault": true }, "presentation": { "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": true, "clear": true }, "problemMatcher": [] }, { "label": "Debug", "type": "shell", "command": "make -s clean", "options": { "cwd": "${workspaceRoot}", "shell": { "executable": "cmd.exe", "args": [ "/C" ] } }, "group": { "kind": "build", "isDefault": true }, "problemMatcher": [] } ] }