snakePlus/.vscode/tasks.json
2020-01-21 01:38:34 +01:00

39 lines
1.1 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run new build",
"type": "shell",
"command": "cd ${workspaceFolder} && pwd && make run",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": true
}
},
{
"label": "Copy new build to SD",
"type": "shell",
"command": "cd ${workspaceFolder} && pwd && make install",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": false
}
}
]
}