reformated vscode files

This commit is contained in:
mrbesen 2022-04-10 14:31:33 +02:00
parent 332988a4f3
commit d053765b2a
Signed by: MrBesen
GPG Key ID: 596B2350DCD67504
2 changed files with 77 additions and 91 deletions

42
.vscode/launch.json vendored
View File

@ -4,27 +4,6 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "test Debuggen (gdb)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/test",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "make test",
"miDebuggerPath": "/usr/bin/gdb"
},
{
"name": "Debuggen (gdb)",
"type": "cppdbg",
@ -45,6 +24,27 @@
],
"preLaunchTask": "make all",
"miDebuggerPath": "/usr/bin/gdb"
},
{
"name": "test Debuggen (gdb)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/test",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "make test",
"miDebuggerPath": "/usr/bin/gdb"
}
]
}

14
.vscode/tasks.json vendored
View File

@ -20,20 +20,6 @@
"type": "shell",
"command": "make clean",
"problemMatcher": []
},
{
"label": "leak check",
"type": "shell",
"command": "/usr/bin/valgrind --leak-check=full ${workspaceFolder}/%NAME% -s",
"problemMatcher": [],
"dependsOn": "make all"
},
{
"label": "leak check ALL",
"type": "shell",
"command": "/usr/bin/valgrind --leak-check=full --show-leak-kinds=all ${workspaceFolder}/%NAME% -s",
"problemMatcher": [],
"dependsOn": "make all"
},
{
"label": "make test",