19 lines
460 B
JSON
19 lines
460 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch",
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/zig-out/bin/voxel-game",
|
|
"cwd": "${workspaceFolder}",
|
|
},
|
|
{
|
|
"name": "Attach",
|
|
"type": "lldb",
|
|
"request": "attach",
|
|
"program": "${workspaceFolder}/zig-out/bin/voxel-game",
|
|
},
|
|
],
|
|
}
|