2020-12-14 15:21:17 +00:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"options": {
|
|
|
|
"env": {
|
2021-05-28 09:06:00 +00:00
|
|
|
"SOC": "stm32g031",
|
|
|
|
// "SOC": "stm32g071",
|
2020-12-14 15:21:17 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
"presentation": {
|
|
|
|
"focus": true,
|
|
|
|
"reveal": "always",
|
|
|
|
"panel": "shared",
|
|
|
|
"clear": true,
|
|
|
|
},
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "all",
|
|
|
|
"type":"shell",
|
|
|
|
"command": "make all -j8",
|
|
|
|
"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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|