tasks.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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": "scons",
  10. "problemMatcher": [
  11. "$gcc"
  12. ],
  13. "presentation": {
  14. "echo": true,
  15. "reveal": "always",
  16. "focus": true,
  17. "panel": "shared",
  18. "showReuseMessage": true
  19. },
  20. "group": {
  21. "kind": "build",
  22. "isDefault": true
  23. }
  24. },
  25. {
  26. "label": "clean",
  27. "type": "shell",
  28. "command": "scons -c",
  29. "problemMatcher": [],
  30. "presentation": {
  31. "echo": true,
  32. "reveal": "always",
  33. "focus": true,
  34. "panel": "shared",
  35. "showReuseMessage": true
  36. }
  37. },
  38. {
  39. "label": "qemu simulator",
  40. "type": "shell",
  41. "command": "qemu.bat",
  42. "problemMatcher" : []
  43. }
  44. ]
  45. }