Geen omschrijving

tasks.json 659B

123456789101112131415161718192021222324252627
  1. {
  2. "version": "2.0.0",
  3. "command": "C:/cygwin64/bin/bash",
  4. "args": ["-lc", "make"],
  5. "suppressTaskName": true,
  6. "tasks": [
  7. {
  8. "type": "shell",
  9. "group": "build",
  10. "taskName": "build",
  11. "args": [],
  12. "problemMatcher": [],
  13. "presentation": {
  14. "reveal": "always",
  15. "echo": true
  16. }
  17. },
  18. {
  19. "type": "shell",
  20. "group": "none",
  21. "taskName": "start",
  22. "command": "~/sots/source_of_the_sovereign/debug.sh",
  23. "args":[],
  24. "problemMatcher": []
  25. }
  26. ]
  27. }