tasks.json 737 B

123456789101112131415161718192021222324252627
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. // https://code.visualstudio.com/docs/editor/tasks
  6. //https://gist.github.com/deadalusai/9e13e36d61ec7fb72148
  7. // ${workspaceRoot}: the root folder of the team
  8. // ${file}: the current opened file
  9. // ${fileBasename}: the current opened file's basename
  10. // ${fileDirname}: the current opened file's dirname
  11. // ${fileExtname}: the current opened file's extension
  12. // ${cwd}: the current working directory of the spawned process
  13. "type": "shell",
  14. "command": "sh ./scripts/build_sdk.sh",
  15. "group": "build",
  16. "options": {
  17. "cwd": "${workspaceFolder}/../"
  18. },
  19. // "problemMatcher": [
  20. // "$rustc"
  21. // ],
  22. "label": "BuildRust"
  23. }
  24. ]
  25. }