This commit is contained in:
Tomas G.
2026-03-13 08:16:01 +01:00
commit 23bb2d2749
104 changed files with 205490 additions and 0 deletions

40
projekt_linux/.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,40 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Make",
"type": "shell",
"command": "${workspaceFolder}/../mingw64/bin/mingw32-make.exe", // Or "mingw32-make" if you are using MinGW on Windows and "make" is not in your PATH
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean Object Files (Windows)",
"type": "shell",
"command": "${workspaceFolder}/../mingw64/bin/mingw32-make.exe clean",
"args": [
"build/*.o"
],
"problemMatcher": [],
"group": "cleanup",
"detail": "Deletes all object files (*.o) in the current directory"
},
{
"label": "Run",
"type": "shell",
"command": "${workspaceFolder}/../mingw64/bin/mingw32-make.exe run",
"options": {
"cwd": "${workspaceFolder}"
},
"dependsOn": "Make"
}
]
}