VSCode Build Scripts
This commit is contained in:
24
.vscode/tasks.json
vendored
Normal file
24
.vscode/tasks.json
vendored
Normal 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"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user