Start refactoring printers into own directory

This commit is contained in:
2025-10-11 12:29:43 +02:00
parent 3dc5da6fc8
commit 0b8ff28a60
11 changed files with 271 additions and 177 deletions

11
.vscode/launch.json vendored
View File

@@ -9,12 +9,15 @@
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/builddir/ptprnt",
"args": ["-t Hello"],
"args": [
"-t i"
],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"setupCommands": [
{
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
@@ -24,4 +27,4 @@
]
}
]
}
}