Files
inferno-hart/launch.json
2023-12-01 20:37:43 +00:00

25 lines
681 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "C/C++: g++ debug",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/inferno",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing"
}
]
}
]
}