tasks.json 871 B

12345678910111213141516171819202122232425262728293031
  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": "compile O7",
  8. "type": "shell",
  9. "command": [
  10. "${config:python.pythonPath}",
  11. "${workspaceFolder}/build.py",
  12. "--file",
  13. "${file}",
  14. "compile"
  15. ],
  16. "problemMatcher": {
  17. "fileLocation": ["absolute"],
  18. "pattern": {
  19. "regexp": "^File\\s+\"(.*)\",\\s+line\\s+(\\d+):\\s+(.*)$",
  20. "file": 1,
  21. "line": 2,
  22. "message": 3
  23. }
  24. },
  25. "group": {
  26. "kind": "build",
  27. "isDefault": true
  28. }
  29. }
  30. ]
  31. }