tasks.json 684 B

12345678910111213141516171819202122232425262728
  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": "gcc",
  10. "args": [
  11. "-g",
  12. "-o",
  13. "my_project",
  14. "main.c",
  15. ],
  16. "group": "build",
  17. "presentation": {
  18. "echo": true,
  19. "panel": "shared",
  20. "reveal": "always",
  21. "clear": true
  22. },
  23. "problemMatcher": [
  24. "$gcc"
  25. ]
  26. }
  27. ]
  28. }