73 lines
2.5 KiB
JSON
73 lines
2.5 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": "cppvsdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/bin/Editor.exe",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceRoot}/bin",
|
|
"console": "internalConsole",
|
|
"environment": [],
|
|
"symbolSearchPath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.25.28610\\lib\\x64",
|
|
"requireExactSource": false,
|
|
"visualizerFile": "${workspaceRoot}/Seele.natvis",
|
|
"logging": {
|
|
"moduleLoad": false,
|
|
"exceptions": true,
|
|
"trace": true,
|
|
"traceResponse": true
|
|
}
|
|
},
|
|
{
|
|
"name": "Editor (Mac)",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/bin/Editor",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceRoot}/bin",
|
|
"environment": [
|
|
{
|
|
"name": "VK_LAYER_PATH",
|
|
"value": "/opt/homebrew/opt/vulkan-validationlayers/share/vulkan/explicit_layer.d"
|
|
}
|
|
],
|
|
"logging": {
|
|
"moduleLoad": false
|
|
},
|
|
"externalConsole": false,
|
|
"MIMode": "lldb",
|
|
"targetArchitecture": "arm64"
|
|
},
|
|
{
|
|
"name": "Editor (Linux)",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceRoot}/bin/Editor",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceRoot}/bin",
|
|
"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
|
|
}
|
|
]
|
|
},
|
|
]
|
|
} |