Files
ptouch-prnt/.vscode/launch.json
Moritz Martinius 349036bfaf
All checks were successful
Build ptprnt / build (push) Successful in 3m50s
Updated Code debug configuration to use lldb
2024-11-14 20:37:04 +01:00

18 lines
516 B
JSON

{
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ptprnt_debug",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/builddir/ptprnt",
"args": [
"-t Hello"
],
"cwd": "${fileDirname}",
}
]
}