You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
566 B

  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "Build C++ project",
  6. "type": "shell",
  7. "group": {
  8. "kind": "build",
  9. "isDefault": true
  10. },
  11. "command": "make",
  12. },
  13. {
  14. "label": "Build & run C++ project",
  15. "type": "shell",
  16. "group": {
  17. "kind": "test",
  18. "isDefault": true
  19. },
  20. "command": "make",
  21. "args": [
  22. "run"
  23. ]
  24. }
  25. ]
  26. }