tasks.json 942 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "tasks": [
  3. {
  4. "label": "Build all",
  5. "group": "build",
  6. "type": "shell",
  7. "command": "make",
  8. "args": ["all", "-j4"]
  9. },
  10. {
  11. "label": "ReBuild",
  12. "group": "build",
  13. "type": "shell",
  14. "command": "make",
  15. "args": ["clean", "all"]
  16. },
  17. {
  18. "label": "Clean all",
  19. "group": "build",
  20. "type": "shell",
  21. "command": "make",
  22. "args": ["clean"]
  23. },
  24. {
  25. "label": "JFlash",
  26. "group": "build",
  27. "type": "shell",
  28. "command": "make",
  29. "args": ["-j4","jflash"]
  30. },
  31. {
  32. "label": "STflash",
  33. "group": "build",
  34. "type": "shell",
  35. "command": "make",
  36. "args": ["-j4","stflash"]
  37. }
  38. ],
  39. "version": "2.0.0"
  40. }