vulkan-project/.vimspector.json
2022-10-14 20:58:20 +02:00

23 lines
517 B
JSON

{
"configurations": {
"vulkan_test": {
"adapter": "vscode-cpptools",
"configuration": {
"name": "vulkan (cpp)",
"type": "cppdbg",
"request": "launch",
"externalConsole": true,
"logging": {
"engineLogging": true
},
"stopOnEntry": true,
"stopAtEntry": true,
"debugOptions": [],
"MIMode": "gdb",
"cwd": "~/c++/vulkan",
"program": "vulkan_test"
}
}
}
}