This commit is contained in:
JOLIMAITRE Matthieu 2024-03-27 02:21:34 +01:00
commit 02515c9675
17 changed files with 1653 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/mb/Projects/011-epita-proj/tgr/src",
"program": "/home/mb/Projects/011-epita-proj/tgr/src/build/Debug/outDebug",
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}