初版适配和修改
This commit is contained in:
22
.vscode/tasks.json
vendored
Normal file
22
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build Debug",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"args": ["-j8", "BUILD=debug", "all"],
|
||||
"options": { "cwd": "${workspaceFolder}" },
|
||||
"group": { "kind": "build", "isDefault": true },
|
||||
"problemMatcher": ["$gcc"]
|
||||
},
|
||||
{
|
||||
"label": "Flash DAPLink",
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
"args": ["BUILD=debug", "flash"],
|
||||
"options": { "cwd": "${workspaceFolder}" },
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user