andrew b49accccbd Changed default GDB extension as I use CCLS language server
and it wasn't playing nice with Microsoft C++/C extension
I think CCLS + Native Debug gives a better experience
2020-11-13 15:03:54 +00:00

14 lines
292 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "gdb",
"request": "launch",
"name": "Launch Program",
"target": "${workspaceFolder}/build/bin/demo",
"cwd": "${workspaceFolder}",
"valuesFormatting": "parseText"
}
]
}