tasks.json 927 B

1234567891011121314151617181920212223242526
  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": "make",
  10. "args": [
  11. // Ask msbuild to generate full paths for file names.
  12. "/property:GenerateFullPaths=true",
  13. "/t:build",
  14. // Do not generate summary otherwise it leads to duplicate errors in Problems panel
  15. "/consoleloggerparameters:NoSummary"
  16. ],
  17. "group": "build",
  18. "presentation": {
  19. // Reveal the output only if unrecognized errors occur.
  20. "reveal": "silent"
  21. },
  22. // Use the standard MS compiler pattern to detect errors, warnings and infos
  23. "problemMatcher": "$msCompile"
  24. }
  25. ]
  26. }