tasks.json 605 B

123456789101112131415161718192021
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build-normal",
  6. "type": "shell",
  7. "command": "&'${workspaceRoot}/pawno/pawncc.exe'",
  8. "args": ["\\\"${file}\\\"", "\\\"-;+\\\"", "\\\"-(+\\\"", "\\\"-Dgamemodes/\\\"", "\\\"-Z+\\\""],
  9. "group": {
  10. "kind": "build",
  11. "isDefault": true
  12. },
  13. "isBackground": false,
  14. "presentation": {
  15. "reveal": "silent",
  16. "panel": "dedicated"
  17. },
  18. "problemMatcher": "$pawncc"
  19. }
  20. ]
  21. }