Files
Seele/.vscode/launch.json
T

73 lines
2.5 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",
2020-04-01 02:17:49 +02:00
"type": "cppvsdbg",
"request": "launch",
2024-04-23 08:11:44 +02:00
"program": "${workspaceRoot}/build/Editor.exe",
2020-04-01 02:17:49 +02:00
"args": [],
"stopAtEntry": false,
2024-04-23 08:11:44 +02:00
"cwd": "${workspaceRoot}/build",
2022-09-24 21:06:25 +02:00
"console": "internalConsole",
2020-04-01 02:17:49 +02:00
"environment": [],
2020-04-12 15:47:19 +02:00
"symbolSearchPath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.25.28610\\lib\\x64",
"requireExactSource": false,
2022-02-14 16:29:26 +01:00
"visualizerFile": "${workspaceRoot}/Seele.natvis",
2020-04-12 15:47:19 +02:00
"logging": {
"moduleLoad": false,
"exceptions": true,
"trace": true,
"traceResponse": true
}
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",
2024-04-23 08:11:44 +02:00
"program": "${workspaceRoot}/build/Editor",
2024-01-17 09:37:54 +01:00
"args": [],
"stopAtEntry": false,
2024-04-23 08:11:44 +02:00
"cwd": "${workspaceRoot}/build",
2024-01-19 22:57:45 +01:00
"environment": [
{
"name": "VK_LAYER_PATH",
"value": "/opt/homebrew/opt/vulkan-validationlayers/share/vulkan/explicit_layer.d"
}
],
2024-02-01 08:42:24 +01:00
"logging": {
"moduleLoad": false
},
2024-01-17 09:37:54 +01:00
"externalConsole": false,
"MIMode": "lldb",
"targetArchitecture": "arm64"
},
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": [],
"stopAtEntry": false,
2024-04-23 08:11:44 +02:00
"cwd": "${workspaceRoot}/build",
2023-11-06 14:47:21 +01:00
"environment": [],
"externalConsole": false,
"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
}
]
},
2020-04-01 02:17:49 +02:00
]
}