Advertisement
Guest User

Untitled

a guest
Jun 18th, 2025
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. {
  2.     // See https://go.microsoft.com/fwlink/?LinkId=733558
  3.     // for the documentation about the tasks.json format
  4.     "version": "2.0.0",
  5.     "tasks": [
  6.         {
  7.             "label": "Build",
  8.             "type": "shell",
  9.             "command": "make",
  10.             "args": [
  11.                 "-f",
  12.                 "makefile_custom",
  13.                 "-j14"
  14.             ],
  15.             "problemMatcher": [],
  16.             "group": {
  17.                 "kind": "build",
  18.                 "isDefault": true
  19.             }
  20.         },
  21.         {
  22.             "label": "Build & Flash",
  23.             "type": "shell",
  24.             "command": "make",
  25.             "args": [
  26.                 "-f",
  27.                 "makefile_custom",
  28.                 "flash",
  29.                 "-j14"
  30.             ]
  31.         },
  32.         {
  33.             "label": "Clean",
  34.             "type": "shell",
  35.             "command": "make",
  36.             "args": [
  37.                 "-f",
  38.                 "makefile_custom",
  39.                 "clean"
  40.             ],
  41.             "problemMatcher": []
  42.         }
  43.     ]
  44.   }
  45. {
  46.     // See https://go.microsoft.com/fwlink/?LinkId=733558
  47.     // for the documentation about the tasks.json format
  48.     "version": "2.0.0",
  49.     "tasks": [
  50.         {
  51.             "label": "Build",
  52.             "type": "shell",
  53.             "command": "make",
  54.             "args": [
  55.                 "-f",
  56.                 "makefile_custom",
  57.                 "-j14"
  58.             ],
  59.             "problemMatcher": [],
  60.             "group": {
  61.                 "kind": "build",
  62.                 "isDefault": true
  63.             }
  64.         },
  65.         {
  66.             "label": "Build & Flash",
  67.             "type": "shell",
  68.             "command": "make",
  69.             "args": [
  70.                 "-f",
  71.                 "makefile_custom",
  72.                 "flash",
  73.                 "-j14"
  74.             ]
  75.         },
  76.         {
  77.             "label": "Clean",
  78.             "type": "shell",
  79.             "command": "make",
  80.             "args": [
  81.                 "-f",
  82.                 "makefile_custom",
  83.                 "clean"
  84.             ],
  85.             "problemMatcher": []
  86.         }
  87.     ]
  88.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement