kaliber/.vscode/launch.json

28 lines
799 B
JSON
Raw Normal View History

2021-08-31 21:21:29 +00:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/out/debug/demo",
2021-08-31 21:21:29 +00:00
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/out/debug",
2021-08-31 21:21:29 +00:00
"environment": [],
"console": "externalTerminal",
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
"preLaunchTask": "Build project",
2021-08-31 21:21:29 +00:00
}
]
}