Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Build",
- "type": "shell",
- "command": "make",
- "args": [
- "-f",
- "makefile_custom",
- "-j14"
- ],
- "problemMatcher": [],
- "group": {
- "kind": "build",
- "isDefault": true
- }
- },
- {
- "label": "Build & Flash",
- "type": "shell",
- "command": "make",
- "args": [
- "-f",
- "makefile_custom",
- "flash",
- "-j14"
- ]
- },
- {
- "label": "Clean",
- "type": "shell",
- "command": "make",
- "args": [
- "-f",
- "makefile_custom",
- "clean"
- ],
- "problemMatcher": []
- }
- ]
- }
- {
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "2.0.0",
- "tasks": [
- {
- "label": "Build",
- "type": "shell",
- "command": "make",
- "args": [
- "-f",
- "makefile_custom",
- "-j14"
- ],
- "problemMatcher": [],
- "group": {
- "kind": "build",
- "isDefault": true
- }
- },
- {
- "label": "Build & Flash",
- "type": "shell",
- "command": "make",
- "args": [
- "-f",
- "makefile_custom",
- "flash",
- "-j14"
- ]
- },
- {
- "label": "Clean",
- "type": "shell",
- "command": "make",
- "args": [
- "-f",
- "makefile_custom",
- "clean"
- ],
- "problemMatcher": []
- }
- ]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement