small launch script fixes for smoth sdl and glfw selection

This commit is contained in:
2026-03-26 18:57:54 +01:00
parent 6edcaa9c11
commit 4b2b1548bf
3 changed files with 104 additions and 15 deletions

30
.vscode/launch.json vendored
View File

@@ -5,23 +5,45 @@
"version": "0.2.0",
"configurations": [
{
"name": "Debug Linux",
"name": "Debug Linux GLFW",
"type": "cppdbg",
"request": "launch",
"MIMode": "gdb",
"program": "${workspaceFolder}/bin/TSE-RTS",
"preLaunchTask": "build_debug_linux",
"preLaunchTask": "build_debug_GLFW_linux",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/bin"
},
{
"name": "Debug Windows",
"name": "Debug Linux SDL3",
"type": "cppdbg",
"request": "launch",
"MIMode": "gdb",
"program": "${workspaceFolder}/bin/TSE-RTS",
"preLaunchTask": "build_debug_SDL3_linux",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/bin"
},
{
"name": "Debug Windows GLFW",
"type": "cppvsdbg",
"request": "launch",
//"MIMode": "gdb",
"program": "${workspaceFolder}/bin/TSE-RTS",
"preLaunchTask": "build_debug_linux",
"preLaunchTask": "build_debug_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_debug_SDL3_linux",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/bin"