mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
28 lines
868 B
JSON
28 lines
868 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "C/C++ debug",
|
|
"cwd": "${workspaceFolder}",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/build/story-player", // Binary to exec
|
|
"args": [
|
|
"build/config.yml"
|
|
], // Arguments passed
|
|
"stopAtEntry": false,
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"MIMode": "gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
],
|
|
"preLaunchTask": "${defaultBuildTask}",
|
|
"miDebuggerPath": "/usr/bin/gdb"
|
|
}
|
|
]
|
|
} |