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-04-13 23:09:16 +02:00
|
|
|
"name": "Engine Debug",
|
2020-04-01 02:17:49 +02:00
|
|
|
"type": "cppvsdbg",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"program": "${workspaceRoot}/bin/Debug/SeeleEngine.exe",
|
|
|
|
|
"args": [],
|
|
|
|
|
"stopAtEntry": false,
|
2020-08-11 21:23:20 +02:00
|
|
|
"cwd": "${workspaceRoot}/bin/Debug",
|
2021-03-31 12:18:16 +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,
|
|
|
|
|
"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
|
|
|
{
|
|
|
|
|
"name": "Engine Release",
|
|
|
|
|
"type": "cppvsdbg",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"program": "${workspaceRoot}/bin/Release/SeeleEngine.exe",
|
|
|
|
|
"args": [],
|
|
|
|
|
"stopAtEntry": false,
|
|
|
|
|
"cwd": "${workspaceRoot}/bin/Release",
|
|
|
|
|
"console": "internalConsole",
|
|
|
|
|
"environment": [],
|
|
|
|
|
"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,
|
2021-03-31 12:18:16 +02:00
|
|
|
"console": "internalConsole",
|
2020-06-02 11:46:18 +02:00
|
|
|
"cwd": "${workspaceRoot}/bin/Debug",
|
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
|
|
|
]
|
|
|
|
|
}
|