Files
base/.vscode/tasks.json

35 lines
836 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "build-fork",
"type": "shell",
"command": "make",
"args": ["fork"],
"group": "build",
"problemMatcher": ["$gcc"]
},
{
"label": "build-execlp",
"type": "shell",
"command": "make",
"args": ["execlp"],
"group": "build",
"problemMatcher": ["$gcc"]
},
{
"label": "build-all",
"type": "shell",
"command": "make",
"group": "build",
"problemMatcher": ["$gcc"]
},
{
"label": "clean",
"type": "shell",
"command": "make",
"args": ["clean"],
"group": "build"
}
]
}