STEINGEN/.vscode/tasks.json
Slobodan Jelic c670e7fa16 build: 🔨 Devcontainer updated.
Updated devcontainer with texlive options. Improve build. Aux files cleaned after build.
2025-10-10 10:30:38 +00:00

26 lines
557 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": []
}
]
}