test.c/.vscode/tasks.json

42 lines
1.0 KiB
JSON
Raw Normal View History

2019-07-09 12:20:06 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "all",
2019-07-13 21:22:43 +00:00
"type":"shell",
"command": "make all -j4",
"problemMatcher": {
"base": "gcc",
"owner": "gcc",
"fileLocation":"absolute"
},
2019-07-09 12:20:06 +00:00
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "clean",
2019-07-13 21:22:43 +00:00
"type":"shell",
"command": "make clean -j4",
"problemMatcher": {
"base": "gcc",
"owner": "gcc",
"fileLocation":"absolute"
},
"group": {
"kind": "build",
"isDefault": true
}
2019-07-09 12:20:06 +00:00
}
2019-07-13 21:22:43 +00:00
],
"presentation": {
"focus": true,
"reveal": "always",
"panel": "shared",
"clear": true,
}
}