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.

36 lines
995 B

  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. "windows": {
  6. "options": {
  7. "shell": {
  8. "executable": "C:\\windows\\System32\\cmd.exe",
  9. "args": [
  10. "/d", "/c"
  11. ]
  12. }
  13. }
  14. },
  15. "tasks": [
  16. {
  17. "label": "build & run",
  18. "type": "shell",
  19. "command": "make.exe all workplaceFolder=${workspaceFolder} outputExe=${workspaceFolderBasename}.exe",
  20. "args":[
  21. "&& ${workspaceFolderBasename}.exe",
  22. ],
  23. "options": {
  24. "env":{
  25. "PATH" : "C:\\raylib\\tcc\\;%PATH%"
  26. }
  27. },
  28. "group": {
  29. "kind": "build",
  30. "isDefault": true
  31. },
  32. "problemMatcher": [
  33. "$gcc"
  34. ]
  35. }
  36. ]
  37. }