25 lines
No EOL
628 B
JSON
25 lines
No EOL
628 B
JSON
{
|
|
// 如需 tasks.json 格式的文件,
|
|
// 請參閱 https://go.microsoft.com/fwlink/?LinkId=733558
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "shell",
|
|
"label": "gcc build active file",
|
|
"command": "/usr/bin/gcc",
|
|
"args": [
|
|
"-g",
|
|
"${file}",
|
|
"-o",
|
|
"${fileDirname}/${fileBasenameNoExtension}"
|
|
],
|
|
"options": {
|
|
"cwd": "/usr/bin"
|
|
},
|
|
"problemMatcher": [
|
|
"$gcc"
|
|
],
|
|
"group": "build"
|
|
}
|
|
]
|
|
} |