This commit is contained in:
Tulis_Dwa
2025-01-20 20:39:23 +00:00
commit 3ab836d91c
4 changed files with 101 additions and 0 deletions

24
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C/C++ Runner: Debug Session",
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": false,
"externalConsole": false,
"cwd": "/home/server/projects/Programowanie/Zaległe/2024-12-17/TulisGra",
"program": "/home/server/projects/Programowanie/Zaległe/2024-12-17/TulisGra/build/Debug/outDebug",
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}