KT0915_radio/.vscode/tasks.json
2023-01-23 16:39:02 +08:00

33 lines
556 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "GNUMake Build",
"detail": "编译项目",
"command": "make",
"args": [],
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "GNUMake Build Flash Run",
"detail": "编译烧录并运行项目",
"command": "make && make flash",
"args": [],
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "test",
"isDefault": true
}
}
]
}