STEINGEN/.vscode/tasks.json
2024-11-25 12:10:39 +01:00

26 lines
532 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build Program",
"type": "shell",
"command": "make",
"args": [],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$gcc"],
"detail": "Build the project using Makefile"
},
{
"label": "Clean Build",
"type": "shell",
"command": "make",
"args": ["clean"],
"group": "build",
"problemMatcher": []
}
]
}