fix: add VSCode config files for Linux project

This commit is contained in:
Tomas G.
2026-04-29 22:50:00 +02:00
parent 23bb2d2749
commit dbf2e05ba4
2 changed files with 12 additions and 12 deletions

View File

@ -5,16 +5,16 @@
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/boat_sim.exe",
"program": "${workspaceFolder}/./boat_sim",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"preLaunchTask": "Make",
"preLaunchTask": "Build",
"windows": {
"MIMode": "gdb",
"miDebuggerPath": "${workspaceFolder}/../mingw64/bin/gdb.exe",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
@ -35,4 +35,5 @@
}
}
]
}
}