Files
Seele/.vscode/launch.json
T

28 lines
1.0 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",
2022-09-24 21:06:25 +02:00
"program": "${workspaceRoot}/bin/Debug/Editor.exe",
2020-04-01 02:17:49 +02:00
"args": [],
"stopAtEntry": false,
2020-08-11 21:23:20 +02:00
"cwd": "${workspaceRoot}/bin/Debug",
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
},
]
}