tasks.json 457 B

123456789101112131415161718192021
  1. {
  2. "tasks": [
  3. {
  4. "type": "cppbuild",
  5. "label": "C/C++: make project",
  6. "command": "make",
  7. "args": [],
  8. "options": {
  9. "cwd": "${workspaceFolder}"
  10. },
  11. "problemMatcher": [
  12. "$gcc"
  13. ],
  14. "group": {
  15. "kind": "build",
  16. "isDefault": true
  17. }
  18. }
  19. ],
  20. "version": "2.0.0"
  21. }