This commit is contained in:
Jarred Sumner
2021-04-21 13:04:49 -07:00
parent 879743110c
commit 9d8f5996d4
6 changed files with 778 additions and 69 deletions

21
.vscode/launch.json vendored
View File

@@ -3,16 +3,21 @@
"configurations": [
{
"name": "Test",
"type": "cppdbg",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/zig-cache/bin/test",
"args": ["prevent-panic-by-passing-a-placeholder-arg"],
"preLaunchTask": "test",
"stopAtEntry": false,
"stdio": null,
"stopOnEntry": false,
"program": "/usr/local/bin/zig",
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb"
"args": ["test", "${file}"],
"presentation": {
"hidden": false,
"group": "",
"order": 1
},
"env": {
"TERM": "xterm"
}
},
{