Files
Seele/.vscode/launch.json
T

49 lines
1.6 KiB
JSON
Raw 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:52:43 +01:00
"program": "${workspaceRoot}/build/external/Seele/Debug/Editor",
2024-01-17 09:37:54 +01:00
"args": [],
2026-03-16 16:52:43 +01:00
"cwd": "${workspaceRoot}/build/external/Seele/Debug",
2024-01-17 09:37:54 +01:00
},
2023-11-06 14:47:21 +01:00
{
"name": "Editor (Linux)",
"type": "cppdbg",
"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",
"value": "alloc_dealloc_mismatch=0",
}
],
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
}
2025-05-16 13:04:43 +02:00
],
2023-11-06 14:47:21 +01:00
},
2020-04-01 02:17:49 +02:00
]
}