Try to get debugger working.

This commit is contained in:
SeanOMik 2020-06-18 15:32:18 -05:00
parent 4a6f941683
commit 7f7717ce63
No known key found for this signature in database
GPG Key ID: FA4D55AC05268A88
1 changed files with 16 additions and 3 deletions

19
.vscode/launch.json vendored
View File

@ -8,9 +8,22 @@
"name": "Debug Nim Project",
"type": "gdb",
"request": "launch",
"target": "./src/client.exe",
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText"
"program": "${workspaceFolder}/src/client.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"valuesFormatting": "parseText",
"MIMode": "gdb",
"miDebuggerPath": "D:/Code/nim/nim-1.2.0/dist/mingw64/bin/gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}