Poly3d/.vscode/launch.json

26 lines
869 B
JSON
Raw Permalink Normal View History

2024-11-25 23:08:00 +00:00
{
"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
}
]
}
]
}