sentry_gimbal_hzz/.vscode/tasks.json

34 lines
864 B
JSON
Raw Normal View History

2022-11-12 19:37:16 +08:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
2023-04-03 17:05:43 +08:00
"label": "build task",
"type": "shell",
"command": "mingw32-make -j24",
"problemMatcher": [],
2022-11-12 19:37:16 +08:00
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "download dap",
2023-04-03 17:05:43 +08:00
"type": "shell",
"command": "mingw32-make download_dap",
"group": {
"kind": "build",
2023-04-03 17:05:43 +08:00
"isDefault": false
}
},
{
"label": "download jlink",
"type": "shell",
2023-04-03 17:05:43 +08:00
"command": "mingw32-make download_jlink",
"group": {
"kind": "build",
2023-04-03 17:05:43 +08:00
"isDefault": false
}
2023-04-03 17:05:43 +08:00
}
2022-11-12 19:37:16 +08:00
]
}