Files
Seele/.vscode/launch.json
T
2026-04-12 21:39:31 +02:00

69 lines
2.3 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Editor",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/build/Editor.exe",
"args": [],
"cwd": "${workspaceRoot}/build",
"console": "integratedTerminal",
"breakpointMode": "path",
},
{
"name": "Editor (Mac)",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/build/external/Seele/Editor",
"args": [],
"cwd": "${workspaceRoot}/build/external/Seele",
"initCommands": [
"command script import ${workspaceFolder}/external/Seele/gdb/Seele_lldb.py"
]
},
{
"name": "Editor (Linux)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/build/Editor",
"args": [],
"environment": [
{
"name": "ASAN_OPTIONS",
"value": "detect_leaks=0",
},
{
"name": "DISABLE_VK_LAYER_VALVE_steam_overlay_1",
"value": "1",
},
{
"name": "DISABLE_VK_LAYER_VALVE_steam_fossilize_1",
"value": "1",
},
{
"name": "MANGOHUD",
"value": "0",
}
],
"cwd": "${workspaceRoot}/build",
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Import Seele pretty-printers",
"text": "python exec(open('${workspaceFolder}/Seele/gdb/Seele.py').read())",
"ignoreFailures": true
}
],
},
]
}