Aer/.vscode/tasks.json

38 lines
686 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Win32 Build",
"type": "shell",
"command": "gcc",
"args": [
"-g",
"-o",
"psharp.exe",
"api.c",
"builtin.c",
"compile.c",
"constant.c",
"hashmap.c",
"interpreter.c",
"lexer.c",
"lib.c",
"memobj.c",
"oop.c",
"parser.c",
"vfs.c",
"vm.c"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
}
}
]
}