Brak opisu

tasks.json 406B

1234567891011121314151617181920
  1. {
  2. "version": "0.1.0",
  3. "command": "make",
  4. "isShellCommand": true,
  5. "args": [],
  6. "showOutput": "always",
  7. "echoCommand": true,
  8. "suppressTaskName": true,
  9. "tasks": [
  10. {
  11. "isBuildCommand": true,
  12. "taskName": "build",
  13. "args": ["-j4", "all"]
  14. },
  15. {
  16. "taskName": "clean",
  17. "args": ["clean"]
  18. }
  19. ]
  20. }