86 lines
2.2 KiB
JSON
86 lines
2.2 KiB
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"options": {
|
||
|
"env": {
|
||
|
"ARCH": "posix",
|
||
|
},
|
||
|
},
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "all",
|
||
|
"type":"shell",
|
||
|
"command": "make all -j8",
|
||
|
"problemMatcher": {
|
||
|
"base": "$gcc",
|
||
|
"owner": "gcc",
|
||
|
"fileLocation": [
|
||
|
"relative",
|
||
|
"${workspaceFolder}"
|
||
|
]
|
||
|
},
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "flash",
|
||
|
"type":"shell",
|
||
|
"command": "make flash",
|
||
|
"problemMatcher": {
|
||
|
"base": "$gcc",
|
||
|
"owner": "gcc",
|
||
|
"fileLocation": [
|
||
|
"relative",
|
||
|
"${workspaceFolder}"
|
||
|
]
|
||
|
},
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "clean",
|
||
|
"type":"shell",
|
||
|
"command": "make clean -j8",
|
||
|
"problemMatcher": {
|
||
|
"base": "$gcc",
|
||
|
"owner": "gcc",
|
||
|
"fileLocation": [
|
||
|
"relative",
|
||
|
"${workspaceFolder}"
|
||
|
]
|
||
|
},
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "distclean",
|
||
|
"type":"shell",
|
||
|
"command": "make distclean",
|
||
|
"problemMatcher": {
|
||
|
"base": "$gcc",
|
||
|
"owner": "gcc",
|
||
|
"fileLocation": [
|
||
|
"relative",
|
||
|
"${workspaceFolder}"
|
||
|
]
|
||
|
},
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"presentation": {
|
||
|
"focus": true,
|
||
|
"reveal": "always",
|
||
|
"panel": "shared",
|
||
|
"clear": true,
|
||
|
}
|
||
|
}
|