wideband/.vscode/tasks.json

34 lines
895 B
JSON
Raw Normal View History

2020-11-11 16:30:31 -08:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
2020-12-08 23:40:54 -08:00
"label": "Build Firmware",
2020-11-11 16:30:31 -08:00
"type": "shell",
"command": "make -j8",
"options": {
"cwd": "${workspaceRoot}/firmware"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
2020-12-08 23:40:54 -08:00
},
{
"label": "Build Bootloader",
"type": "shell",
"command": "./build_bootloader.sh",
"options": {
"cwd": "${workspaceRoot}/firmware/bootloader"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
2020-11-11 16:30:31 -08:00
}
]
}