ticables-gdb-bridge/.vscode/launch.json

49 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2022-12-24 11:32:32 +01: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": [
2022-12-24 11:32:32 +01:00
{
"name": "tibridge",
2022-12-24 11:32:32 +01:00
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/tibridge",
2022-12-24 11:32:32 +01:00
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "build",
"setupCommands": [
{
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "tikeys",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/tikeys",
"args": ["-s=noshell", "-p=CRACKERS", "--log-level=trace"],
"stopAtEntry": true,
2022-12-24 11:32:32 +01:00
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "build",
"setupCommands": [
{
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}