tasks.json 867 B

123456789101112131415161718192021222324252627282930
  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. "compile",
  13. "${file}"
  14. ],
  15. "problemMatcher": {
  16. "fileLocation": ["relative", "${workspaceFolder}"],
  17. "pattern": {
  18. "regexp": "^File\\s+\"(.*)\",\\s+line\\s+(\\d+):\\s+(.*)$",
  19. "file": 1,
  20. "line": 2,
  21. "message": 3
  22. }
  23. },
  24. "group": {
  25. "kind": "build",
  26. "isDefault": true
  27. }
  28. }
  29. ]
  30. }