{ // 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 Debug (Linux)", "type": "cppdbg", "request": "launch", "program": "${workspaceRoot}/bin/Debug/SeeleEngine", "args": [], "stopAtEntry": false, "cwd": "${workspaceRoot}/bin/Debug", "console": "internalConsole", "environment": [], "externalConsole": false, "setupCommands": [ { "description": "Enable break on all exceptions", "text": "catch throw", "ignoreFailures": true } ] }, { "name": "Engine Debug", "type": "cppvsdbg", "request": "launch", "program": "${workspaceRoot}/bin/Debug/SeeleEngine.exe", "args": [], "stopAtEntry": false, "cwd": "${workspaceRoot}/bin/Debug", "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 } }, { "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 } }, { "name": "Test (Linux)", "type": "cppdbg", "request": "launch", "program": "${workspaceRoot}/bin/Debug/Seele_unit_tests", "args": [], "stopAtEntry": false, "console": "internalConsole", "cwd": "${workspaceRoot}/bin/Debug", "environment": [], }, { "name": "Test", "type": "cppvsdbg", "request": "launch", "program": "${workspaceRoot}/bin/Debug/Seele_unit_tests.exe", "args": [], "stopAtEntry": false, "console": "internalConsole", "cwd": "${workspaceRoot}/bin/Debug", "environment": [], }, ] }