c-homework/.vscode/tasks.json
2025-03-14 18:14:53 +08:00

29 lines
729 B
JSON

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc 编译-c89",
"command": "gcc",
"args": [
"-fdiagnostics-color=always",
"-std=c89",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "调试器生成的任务。"
}
],
"version": "2.0.0"
}