Files
sdl_template/.vscode/launch.json
2024-12-02 10:37:46 +01:00

32 lines
1.0 KiB
JSON

{
"version": "2.0.0",
"configurations": [
{
"name": "(gdb) C Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/linux-86_64/${workspaceFolderBasename}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"miDebuggerPath": "/usr/bin/gdb",
"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
}
],
"preLaunchTask": "build linux86_64"
}
]
}