vscode 编译cpp 时 task.json
程序员文章站
2022-06-22 17:06:07
...
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "C/C++: g++ build active file",
"command": "g++",
"args": [
"-g", "${file}", "-o", "${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "compiler: g++",
}
]
}
上一篇: 俄罗斯方块java