26 lines
869 B
JSON
26 lines
869 B
JSON
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Debug Game Engine",
|
||
|
"type": "cppdbg",
|
||
|
"request": "launch",
|
||
|
"program": "${workspaceFolder}/build/game_engine.exe", // Path to your executable
|
||
|
"args": [], // Add arguments to pass to your program if necessary
|
||
|
"stopAtEntry": false,
|
||
|
"cwd": "${workspaceFolder}",
|
||
|
"environment": [],
|
||
|
"externalConsole": false,
|
||
|
"MIMode": "gdb",
|
||
|
"miDebuggerPath": "C:/msys64/mingw64/bin/gdb.exe", // Path to your GDB executable
|
||
|
"setupCommands": [
|
||
|
{
|
||
|
"description": "Enable pretty-printing for gdb",
|
||
|
"text": "-enable-pretty-printing",
|
||
|
"ignoreFailures": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|