Files
Tomas G. 23bb2d2749 init
2026-03-13 08:16:01 +01:00

40 lines
1.2 KiB
JSON

{
"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"
}
]
}