SectrPrototype/.vscode/launch.json
Ed_ 1e6e9581c3 Bug fixes to allocators and containers
Still haven't found the main bug with resizing zpl_hashmap on string interning
2024-05-06 23:29:47 -04:00

29 lines
809 B
JSON

{
// 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"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/build/sectr_host.exe",
"args": [],
"cwd": "${workspaceFolder}/build"
}
]
}