small launch script fixes for smoth sdl and glfw selection
This commit is contained in:
30
.vscode/launch.json
vendored
30
.vscode/launch.json
vendored
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user