1
0
UAHCode/CPE449/portScanDetection/.vscode/tasks.json

30 lines
771 B
JSON
Raw Permalink Normal View History

2022-12-01 20:48:27 +00:00
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc build active file",
"command": "/usr/bin/gcc",
"args": [
"-fdiagnostics-color=always",
"-I/usr/lib",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}",
"-libpcap"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}