AdventOfCode2022/4/.vimspector.json

23 lines
543 B
JSON
Raw Normal View History

2022-12-05 14:24:14 +01:00
{
"configurations": {
"vulkan_test": {
"adapter": "vscode-cpptools",
"configuration": {
"name": "day4",
"type": "asmdbg",
"request": "launch",
"externalConsole": true,
"logging": {
"engineLogging": true
},
"stopOnEntry": true,
"stopAtEntry": true,
"debugOptions": [],
"MIMode": "gdb",
"cwd": "~/Sonstiges/AdventOfCode/4",
"program": "~/Sonstiges/AdventOfCode/4/day4"
}
}
}
}