AdventOfCode/.vscode/launch.json

24 lines
519 B
JSON
Raw Permalink Normal View History

2021-12-01 10:06:58 +01:00
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Start",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/c/day3.exe",
2021-12-01 10:06:58 +01:00
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/c/",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}