diff --git a/.vscode/launch.json b/.vscode/launch.json index 76a9017..477d1bf 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,9 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + + //DEBUG: + { "name": "Debug Linux GLFW", "type": "cppdbg", @@ -47,6 +50,53 @@ "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}/bin" + }, + + //RELEASE: + + { + "name": "Debug Linux GLFW", + "type": "cppdbg", + "request": "launch", + "MIMode": "gdb", + "program": "${workspaceFolder}/bin/TSE-RTS", + "preLaunchTask": "build_release_GLFW_linux", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}/bin" + }, + { + "name": "Debug Linux SDL3", + "type": "cppdbg", + "request": "launch", + "MIMode": "gdb", + "program": "${workspaceFolder}/bin/TSE-RTS", + "preLaunchTask": "build_release_SDL3_linux_cmake", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}/bin" + }, + { + "name": "Debug Windows GLFW", + "type": "cppvsdbg", + "request": "launch", + //"MIMode": "gdb", + "program": "${workspaceFolder}/bin/TSE-RTS", + "preLaunchTask": "build_release_GLFW_linux", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}/bin" + }, + { + "name": "Debug Windows SDL3", + "type": "cppvsdbg", + "request": "launch", + //"MIMode": "gdb", + "program": "${workspaceFolder}/bin/TSE-RTS", + "preLaunchTask": "build_release_SDL3_linux_cmake", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}/bin" } ] } \ No newline at end of file