2020-05-18 23:11:46 +10:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "Build",
|
|
|
|
"type": "shell",
|
2020-06-15 13:55:51 +10:00
|
|
|
"command": "cd app && west build",
|
2020-05-18 23:11:46 +10:00
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Flash",
|
|
|
|
"type": "shell",
|
2020-06-15 13:55:51 +10:00
|
|
|
"command": "cd app && west flash",
|
2020-05-18 23:11:46 +10:00
|
|
|
"group": "test"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Debug",
|
|
|
|
"type": "shell",
|
2020-06-15 13:55:51 +10:00
|
|
|
"command": "cd app && west debug",
|
2020-05-18 23:11:46 +10:00
|
|
|
"group": "test"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|