{ "version": "2.0.0", "tasks": [ { "label": "Build Debug", "type": "shell", "command": "make BUILD=Debug", "group": { "kind": "build", "isDefault": true }, "problemMatcher": [ "$gcc" ] }, { "label": "Build Release", "type": "shell", "command": "make", "group": { "kind": "build", "isDefault": true }, "problemMatcher": [ "$gcc" ] }, { "label": "Clean", "type": "shell", "command": "make clean", "group": { "kind": "build" } } ] }