SectrPrototype/.vscode/launch.json

29 lines
809 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": [
{
"name": "Debug gen_odin_src",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/toolchain/odin/codegen/build/gen_src.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/toolchain/odin",
"environment": [],
"console": "externalTerminal",
"visualizerFile": "${workspaceFolder}/toolchain/odin/scripts/gencpp.natvis"
},
2024-01-21 08:16:12 -08:00
{
"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
}
]
}