gpio_ftdi/.vscode/tasks.json

99 lines
2.6 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 -j8",
2019-07-13 21:22:43 +00:00
"problemMatcher": {
"base": "$gcc",
2019-07-13 21:22:43 +00:00
"owner": "gcc",
"fileLocation": [
"relative",
"${workspaceFolder}"
]
2019-07-13 21:22:43 +00:00
},
2019-07-09 12:20:06 +00:00
"group": {
"kind": "build",
"isDefault": true
}
},
2019-07-15 11:52:12 +00:00
{
"label": "check",
"type":"shell",
"command": "make check -j8",
2019-07-15 11:52:12 +00:00
"problemMatcher": {
"base": "$gcc",
"owner": "gcc",
"fileLocation": [
"relative",
"${workspaceFolder}"
]
},
"group": {
"kind": "build",
"isDefault": true
}
},
2019-07-09 12:20:06 +00:00
{
"label": "clean",
2019-07-13 21:22:43 +00:00
"type":"shell",
"command": "make clean -j8",
"problemMatcher": {
"base": "$gcc",
"owner": "gcc",
"fileLocation": [
"relative",
"${workspaceFolder}"
]
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build_unit_test",
"type":"shell",
"command": "make build_unit_test -j8",
"problemMatcher": {
"base": "$gcc",
"owner": "gcc",
"fileLocation": [
"relative",
"${workspaceFolder}"
]
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "exec_unit_test",
"type":"shell",
"command": "make exec_unit_test",
2019-07-13 21:22:43 +00:00
"problemMatcher": {
"base": "$gcc",
2019-07-13 21:22:43 +00:00
"owner": "gcc",
"fileLocation": [
"relative",
"${workspaceFolder}"
]
2019-07-13 21:22:43 +00:00
},
"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,
}
}