From d9f48fe607eb7fc2053f751cadc4f20dd4e6b2213ac652b0620e7ad3da7d7f54 Mon Sep 17 00:00:00 2001 From: Mexpert_RPO Date: Tue, 5 May 2026 13:59:38 +0200 Subject: [PATCH] updated launch.json --- .vscode/launch.json | 50 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) 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