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",
|
2019-07-15 20:38:04 +00:00
|
|
|
"command": "make all -j8",
|
2019-07-13 21:22:43 +00:00
|
|
|
"problemMatcher": {
|
2019-07-15 11:27:17 +00:00
|
|
|
"base": "$gcc",
|
2019-07-13 21:22:43 +00:00
|
|
|
"owner": "gcc",
|
2019-07-15 11:27:17 +00:00
|
|
|
"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",
|
2019-07-15 20:38:04 +00:00
|
|
|
"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",
|
2019-07-15 20:38:04 +00:00
|
|
|
"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",
|
2019-07-15 21:55:17 +00:00
|
|
|
"command": "make exec_unit_test -j1",
|
|
|
|
"problemMatcher": {
|
|
|
|
"base": "$gcc",
|
|
|
|
"owner": "gcc",
|
|
|
|
"fileLocation": [
|
|
|
|
"relative",
|
|
|
|
"${workspaceFolder}"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "coverage",
|
|
|
|
"type":"shell",
|
|
|
|
"command": "make coverage -j1",
|
2019-07-13 21:22:43 +00:00
|
|
|
"problemMatcher": {
|
2019-07-15 11:27:17 +00:00
|
|
|
"base": "$gcc",
|
2019-07-13 21:22:43 +00:00
|
|
|
"owner": "gcc",
|
2019-07-15 11:27:17 +00:00
|
|
|
"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,
|
|
|
|
}
|
|
|
|
}
|