sentry_chassis_hzz/.vscode/tasks.json

34 lines
1.1 KiB
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": [
{
"label": "build task", // 任务标签
"type": "shell", // 任务类型,因为要调用mingw32-make,是在终端(CMD)里运行的,所以是shell任务
"command": "mingw32-make -j24",// 任务命令,线程数可以根据自己的电脑修改,建议为核数的4~8倍
2022-11-12 19:37:16 +08:00
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "download dap",
"type": "shell",
"command":"make download_dap",
"group": {
"kind": "build",
"isDefault": false,
},
},
{
"label": "download jlink",
"type": "shell",
"command":"make download_jlink",
"group": {
"kind": "build",
"isDefault": false,
}
},
2022-11-12 19:37:16 +08:00
]
}