tasks.json 984 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "group": {
  35. "kind": "test",
  36. "isDefault": true
  37. }
  38. }
  39. ]
  40. }