SectrPrototype/.vscode/launch.json

16 lines
420 B
JSON
Raw Normal View History

2024-01-21 08:16:12 -08:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
2024-01-21 20:38:02 -08:00
"program": "${workspaceFolder}/build/sectr_host.exe",
2024-01-21 08:16:12 -08:00
"args": [],
2024-01-21 20:38:02 -08:00
"cwd": "${workspaceFolder}/build"
2024-01-21 08:16:12 -08:00
}
]
}