{ "version": "2.0.0", "tasks": [ { "label": "make debug", "command": "bash", "type": "shell", "options": { "cwd": "${workspaceFolder}/src", "env": { "PLATFORM": "intel", } }, "args": [ "-c", "make debug" ], "group": { "kind": "build", "isDefault": true } }, { "label": "make clean", "command": "bash", "type": "shell", "args": [ "-c", "cd ../src && make clean" ], "group": "build" }, { "label": "make release", "command": "bash", "type": "shell", "options": { "cwd": "${workspaceFolder}/src", "env": { "PLATFORM": "intel", } }, "args": [ "-c", "make" ], "group": "build", "problemMatcher": [] } ] }