tasks.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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": "make example",
  8. "type": "shell",
  9. "command": "make example",
  10. "problemMatcher": [
  11. "$gcc"
  12. ],
  13. "group": {
  14. "kind": "build",
  15. "isDefault": true
  16. }
  17. },
  18. {
  19. "label": "make clean",
  20. "type": "shell",
  21. "command": "make clean",
  22. "problemMatcher": [
  23. "$gcc"
  24. ],
  25. "group": "build"
  26. },
  27. {
  28. "label": "make unittest",
  29. "type": "shell",
  30. "command": "make unittest",
  31. "problemMatcher": [
  32. "$gcc"
  33. ]
  34. },
  35. {
  36. "label": "make integrationtest",
  37. "type": "shell",
  38. "command": "make integrationtest",
  39. "problemMatcher": [
  40. "$gcc"
  41. ]
  42. },
  43. {
  44. "label": "make test",
  45. "type": "shell",
  46. "command": "make test",
  47. "problemMatcher": [
  48. "$gcc"
  49. ],
  50. "group": {
  51. "kind": "test",
  52. "isDefault": true
  53. }
  54. }
  55. ]
  56. }