添加一键配置的教程

This commit is contained in:
NeoZeng
2022-11-29 20:42:17 +08:00
parent 6dd2f9c504
commit b75a848ef1
2 changed files with 44 additions and 4 deletions

6
.vscode/tasks.json vendored
View File

@@ -14,9 +14,9 @@
},
{
"label": "download dap",
"type": "shell",
"command":"make download_dap",
"group": {
"type": "shell", // 如果希望在下载前编译,可以把command换成下面的命令
"command":"make download_dap", // "mingw32-make -j24 && make download_dap",
"group": { // 如果没有修改代码,编译任务不会消耗时间,因此推荐使用上面的替换.
"kind": "build",
"isDefault": false,
},