Bumped minisatip version to 2.0.75
* Build system was changed to cmake since 2.0.72
This commit is contained in:
50
.vscode/tasks.json
vendored
Normal file
50
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build Packgage",
|
||||
"type": "shell",
|
||||
"command": " cd ${input:Package}; abuild -r",
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Clean Package",
|
||||
"type": "shell",
|
||||
"command": " cd ${input:Package}; abuild clean; abuild cleancache",
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Re-generate checksum for package sources",
|
||||
"type": "shell",
|
||||
"command": " cd ${input:Package}; abuild clean; abuild cleancache; abuild checksum",
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
],
|
||||
"inputs": [
|
||||
{
|
||||
"type": "pickString",
|
||||
"id": "Package",
|
||||
"description": "Wich package shoud the command be applied to",
|
||||
"options": [
|
||||
"minisatip",
|
||||
"nut",
|
||||
"custom-firmware",
|
||||
"rflink"
|
||||
],
|
||||
},
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user