Files
Seele/.vscode/launch.json
T

38 lines
1.3 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": [
{
"name": "Engine",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceRoot}/bin/Debug/SeeleEngine.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/bin/Debug",
"environment": [],
2020-04-12 15:47:19 +02:00
"externalConsole": false,
"symbolSearchPath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.25.28610\\lib\\x64",
"requireExactSource": false,
"logging": {
"moduleLoad": false,
"exceptions": true,
"trace": true,
"traceResponse": true
}
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",
2020-04-01 02:17:49 +02:00
"args": [],
"stopAtEntry": false,
2020-06-02 11:46:18 +02:00
"cwd": "${workspaceRoot}/bin/Debug",
2020-04-01 02:17:49 +02:00
"environment": [],
"externalConsole": false
2020-04-12 15:47:19 +02:00
},
2020-04-01 02:17:49 +02:00
]
}