Files
netpong/.vscode/tasks.json
2026-04-24 15:46:28 -04:00

24 lines
542 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "Build Pong",
"command": "/usr/bin/gcc",
"args": [
"-Wall",
"-g",
"main.c",
"court.c",
"network/*.c",
"-o",
"netpong",
"-lncurses"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": ["$gcc"]
}
]
}