2 Commits

Author SHA1 Message Date
Moritz Martinius 349036bfaf Updated Code debug configuration to use lldb
Build ptprnt / build (push) Successful in 3m50s
2024-11-14 20:37:04 +01:00
moritz eaf566ff28 Improve actions pipeline (#12)
Build ptprnt / build (push) Successful in 1m54s
Act runner upgraded, let's see what the versions are...

Reviewed-on: moritz/ptouch-prnt#12
2024-05-01 09:23:12 +00:00
+4 -13
View File
@@ -6,22 +6,13 @@
"configurations": [ "configurations": [
{ {
"name": "ptprnt_debug", "name": "ptprnt_debug",
"type": "cppdbg", "type": "lldb",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/builddir/ptprnt", "program": "${workspaceFolder}/builddir/ptprnt",
"args": ["-t Hello"], "args": [
"stopAtEntry": false, "-t Hello"
],
"cwd": "${fileDirname}", "cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
} }
] ]
} }