crypto1/.vimspector.json

17 lines
360 B
JSON
Raw Normal View History

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