aoc-2023/.vscode/tasks.json
2023-12-25 11:39:35 +12:00

31 lines
815 B
JSON

{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc build active file",
"command": "/usr/bin/gcc",
"args": [
"-fdiagnostics-color=always",
"-g",
"puzzle1.c",
"-o",
"${fileDirname}/${fileBasenameNoExtension}",
"libs/fileLoader.c",
"libs/strTools.c",
"parser.c"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}