diff --git a/.vscode/launch.json b/.vscode/launch.json index 5ccd544..d5c96ac 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,22 +6,13 @@ "configurations": [ { "name": "ptprnt_debug", - "type": "cppdbg", + "type": "lldb", "request": "launch", "program": "${workspaceFolder}/builddir/ptprnt", - "args": ["-t Hello"], - "stopAtEntry": false, + "args": [ + "-t Hello" + ], "cwd": "${fileDirname}", - "environment": [], - "externalConsole": false, - "MIMode": "gdb", - "setupCommands": [ - { - "description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ] } ] -} +} \ No newline at end of file