123456789101112131415161718192021222324252627 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "mzd attach",
- "type": "cppdbg",
- "request": "attach",
- "program": "${workspaceFolder}/target/debug/materialized",
- "cwd": "${workspaceFolder}",
- "processId": "${command:pickProcess}",
- "environment": [],
- "MIMode": "gdb",
- "miDebuggerPath": "rust-gdb"
- },
- {
- "name": "clusterd attach",
- "type": "cppdbg",
- "request": "attach",
- "program": "${workspaceFolder}/target/debug/clusterd",
- "cwd": "${workspaceFolder}",
- "processId": "${command:pickProcess}",
- "environment": [],
- "MIMode": "gdb",
- "miDebuggerPath": "rust-gdb"
- }
- ]
- }
|