Files

69 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2020-04-01 02:17:49 +02:00
{
// 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": [
2021-10-15 23:12:29 +02:00
{
2023-01-29 18:58:59 +01:00
"name": "Editor",
"type": "lldb",
2020-04-01 02:17:49 +02:00
"request": "launch",
2024-04-23 08:11:44 +02:00
"program": "${workspaceRoot}/build/Editor.exe",
2020-04-01 02:17:49 +02:00
"args": [],
2024-04-23 08:11:44 +02:00
"cwd": "${workspaceRoot}/build",
"console": "integratedTerminal",
"breakpointMode": "path",
2020-04-01 02:17:49 +02:00
},
2024-01-17 09:37:54 +01:00
{
"name": "Editor (Mac)",
2024-04-12 09:27:30 +02:00
"type": "lldb",
2024-01-17 09:37:54 +01:00
"request": "launch",
2026-03-16 16:51:53 +01:00
"program": "${workspaceRoot}/build/external/Seele/Editor",
2024-01-17 09:37:54 +01:00
"args": [],
2026-03-16 16:51:53 +01:00
"cwd": "${workspaceRoot}/build/external/Seele",
"initCommands": [
"command script import ${workspaceFolder}/external/Seele/gdb/Seele_lldb.py"
]
2024-01-17 09:37:54 +01:00
},
2023-11-06 14:47:21 +01:00
{
"name": "Editor (Linux)",
2026-04-21 22:00:00 +02:00
"type": "lldb",
2023-11-06 14:47:21 +01:00
"request": "launch",
2024-04-23 08:11:44 +02:00
"program": "${workspaceRoot}/build/Editor",
2023-11-06 14:47:21 +01:00
"args": [],
2025-05-16 13:04:43 +02:00
"environment": [
{
"name": "ASAN_OPTIONS",
2026-04-12 20:49:02 +02:00
"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",
2025-05-16 13:04:43 +02:00
}
],
2024-04-23 08:11:44 +02:00
"cwd": "${workspaceRoot}/build",
2023-11-06 14:47:21 +01:00
"MIMode": "gdb",
2025-05-16 13:04:43 +02:00
"miDebuggerPath": "/usr/bin/gdb",
2023-11-06 14:47:21 +01:00
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
2026-04-12 20:49:02 +02:00
},
{
"description": "Import Seele pretty-printers",
"text": "python exec(open('${workspaceFolder}/Seele/gdb/Seele.py').read())",
"ignoreFailures": true
2023-11-06 14:47:21 +01:00
}
2025-05-16 13:04:43 +02:00
],
2023-11-06 14:47:21 +01:00
},
2020-04-01 02:17:49 +02:00
]
}