Files
Seele/.vscode/launch.json
T

109 lines
4.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
{
"name": "Engine Debug (Linux)",
"type": "cppdbg",
"request": "launch",
2022-02-24 22:38:26 +01:00
"program": "${workspaceRoot}/bin/Debug/Engine",
2021-10-15 23:12:29 +02:00
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/bin/Debug",
2022-03-26 12:55:04 +01:00
"console": "integratedTerminal",
2022-03-26 16:15:50 +01:00
"visualizerFile": "${workspaceRoot}/Seele.natvis",
2021-10-15 23:12:29 +02:00
"environment": [],
"externalConsole": false,
"setupCommands": [
{
"description": "Enable break on all exceptions",
"text": "catch throw",
"ignoreFailures": true
2022-03-26 17:37:30 +01:00
},
{
"description": "Connect to valgrind",
"text": "${command:valgrind-task-integration.valgrindGdbArg}",
"ignoreFailures": true
2021-10-15 23:12:29 +02:00
}
]
},
2020-04-01 02:17:49 +02:00
{
2022-09-24 21:06:25 +02:00
"name": "Editor Debug",
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
},
2021-04-13 23:09:16 +02:00
{
2022-09-24 21:06:25 +02:00
"name": "Editor Release",
2021-04-13 23:09:16 +02:00
"type": "cppvsdbg",
"request": "launch",
2022-09-24 21:06:25 +02:00
"program": "${workspaceRoot}/bin/Release/Editor.exe",
2021-04-13 23:09:16 +02:00
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/bin/Release",
2022-03-26 12:55:04 +01:00
"console": "integratedTerminal",
2021-04-13 23:09:16 +02:00
"environment": [],
"symbolSearchPath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.25.28610\\lib\\x64",
"requireExactSource": false,
2022-03-19 22:45:30 +01:00
"visualizerFile": "${workspaceRoot}/Seele.natvis",
2021-04-13 23:09:16 +02:00
"logging": {
"moduleLoad": false,
"exceptions": true,
"trace": true,
"traceResponse": true
}
},
2021-11-05 00:01:12 +01:00
{
"name": "Test (Linux)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/bin/Debug/Seele_unit_tests",
"args": [],
"stopAtEntry": false,
2022-03-26 12:55:04 +01:00
"console": "integratedTerminal",
2021-11-05 00:01:12 +01:00
"cwd": "${workspaceRoot}/bin/Debug",
"environment": [],
2022-03-26 17:37:30 +01:00
"visualizerFile": "${workspaceRoot}/Seele.natvis",
"setupCommands": [
{
"description": "Enable break on all exceptions",
"text": "catch throw",
"ignoreFailures": true
},
{
"description": "Connect to valgrind",
"text": "${command:valgrind-task-integration.valgrindGdbArg}",
"ignoreFailures": true
}
]
2021-11-05 00:01:12 +01:00
},
2020-04-01 02:17:49 +02:00
{
"name": "Test",
"type": "cppvsdbg",
"request": "launch",
2020-06-02 11:46:18 +02:00
"program": "${workspaceRoot}/bin/Debug/Seele_unit_tests.exe",
2022-04-02 17:42:07 +02:00
"args": ["--detect_memory_leaks"],
2020-04-01 02:17:49 +02:00
"stopAtEntry": false,
2022-03-26 12:55:04 +01:00
"console": "integratedTerminal",
2020-06-02 11:46:18 +02:00
"cwd": "${workspaceRoot}/bin/Debug",
2022-03-19 22:45:30 +01:00
"visualizerFile": "${workspaceRoot}/Seele.natvis",
2020-04-01 02:17:49 +02:00
"environment": [],
2020-04-12 15:47:19 +02:00
},
2020-04-01 02:17:49 +02:00
]
}