12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "tasks": [
- {
- "label": "Build all",
- "group": "build",
- "type": "shell",
- "command": "make",
- "args": ["all", "-j4"]
- },
- {
- "label": "ReBuild",
- "group": "build",
- "type": "shell",
- "command": "make",
- "args": ["clean", "all"]
- },
- {
- "label": "Clean all",
- "group": "build",
- "type": "shell",
- "command": "make",
- "args": ["clean"]
- },
- {
- "label": "JFlash",
- "group": "build",
- "type": "shell",
- "command": "make",
- "args": ["-j4","jflash"]
- },
- {
- "label": "STflash",
- "group": "build",
- "type": "shell",
- "command": "make",
- "args": ["-j4","stflash"]
- }
- ],
- "version": "2.0.0"
- }
|