You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

70 lines
1.4 KiB

{
"tasks": [
{
"label": "Build Libraries",
"command": "./ci/build_libs.sh",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Build Blink",
"command": "make",
"options": {
"cwd": "${workspaceFolder}/Blink"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Build NewProject",
"command": "make",
"options": {
"cwd": "${workspaceFolder}/NewProject"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Build",
"dependsOn": [
"Build Blink",
"Build NewProject"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean Blink",
"command": "make clean",
"options": {
"cwd": "${workspaceFolder}/Blink"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Clean NewProject",
"command": "make clean",
"options": {
"cwd": "${workspaceFolder}/NewProject"
},
"problemMatcher": [],
"type": "shell"
},
{
"label": "Clean",
"dependsOn": [
"Clean Blink",
"Clean NewProject"
],
"problemMatcher": [],
}
],
"version": "2.0.0"
}