Initial commit
This commit is contained in:
commit
0d0863ff0c
8 changed files with 857 additions and 0 deletions
22
.vscode/launch.json
vendored
Normal file
22
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "zig-debug",
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/zig-out/bin/paint-program",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}",
|
||||
"preLaunchTask": "zig-debug-build",
|
||||
"stopOnEntry": false,
|
||||
"env": {},
|
||||
"initCommands": [
|
||||
"command script import ${workspaceFolder}/.vscode/lldb_pretty_printers.py",
|
||||
"type category enable zig",
|
||||
"type category enable zig.std",
|
||||
"type category enable zig.stage2"
|
||||
]
|
||||
},
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue