VSCode Build Scripts

This commit is contained in:
2026-04-24 15:46:28 -04:00
parent fdc6dd2004
commit 4cdda5c53a
3 changed files with 111 additions and 0 deletions

24
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
"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"]
}
]
}