You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.0KB

  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. "group": {
  10. "kind": "build",
  11. "isDefault": true
  12. },
  13. "windows": {
  14. "command": "C:/msys64/mingw64.exe",
  15. "args": [
  16. "make",
  17. "RACK_DIR=/c/Rack-SDK"
  18. ]
  19. },
  20. "options": {
  21. "cwd": "${workspaceRoot}"
  22. },
  23. "problemMatcher": [
  24. "$gcc"
  25. ]
  26. },
  27. {
  28. "label": "Clean",
  29. "type": "shell",
  30. "command": "C:/msys64/mingw64.exe",
  31. "args": [
  32. "make",
  33. "RACK_DIR=/c/Rack-SDK",
  34. "clean"
  35. ],
  36. "options": {
  37. "cwd": "${workspaceRoot}"
  38. },
  39. "problemMatcher": []
  40. }
  41. ]
  42. }