{ "version": "2.0.0", "tasks": [ { "label": "build", // 任务名称 "type": "shell", // 任务类型 "command": "cmd.exe", "args": [ "/c", // 执行命令后关闭终端 "cmake.exe", "--build", "${workspaceFolder}/build", "--config", "Debug", "--target", "all", "--", ], "group": { "kind": "build", "isDefault": true }, "problemMatcher": "$msCompile" } ] }