Debugging working.

This commit is contained in:
Ulysse Cura 2026-07-22 16:10:03 +02:00
parent 15a9ebd9a6
commit cb922ac762
1 changed files with 5 additions and 21 deletions

26
.vscode/launch.json vendored
View File

@ -5,28 +5,12 @@
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"name": "Debug",
"type": "gdb",
"request": "launch",
"program": "${workspaceFolder}/build/2D_Engine",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
"target": "${workspaceFolder}/build/2D_Engine",
"cwd": "${workspaceRoot}",
"valuesFormatting": "parseText"
}
]
}