You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
474 B
26 lines
474 B
2 weeks ago
|
{
|
||
|
"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"
|
||
|
}
|
||
|
]
|
||
|
}
|