push_swap/.vscode/tasks.json

18 lines
413 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build push_swap",
"type": "shell",
"command": "make",
"args": [],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$gcc"],
"detail": "Generated task for building the project using make"
}
]
}