Files
mir_server/server/.vscode/tasks.json
aixianling 5c9f1dae4a init
2025-01-09 17:45:40 +08:00

19 lines
423 B
JSON

{
"tasks": [
{
"type": "shell",
"label": "gcc build active file",
"command": "/usr/bin/gcc",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "/usr/bin"
}
}
],
"version": "2.0.0"
}