crypto1/.vimspector.json

17 lines
360 B
JSON
Raw Permalink Normal View History

2023-09-27 14:31:40 +00:00
{
"configurations": {
"Launch": {
"adapter": "vscode-cpptools",
"filetypes": [ "cpp", "c", "objc", "rust" ], // optional
"configuration": {
"request": "launch",
"program": "./build/main.o",
2023-09-27 21:07:47 +00:00
"cwd": "/home/violette/classes/S9/crypto/",
2023-09-27 14:31:40 +00:00
"externalConsole": true,
"MIMode": "gdb"
}
}
}
}