Simulation Core
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.

преди 1 година
12345678910111213141516171819202122232425
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "make",
  6. "type": "shell",
  7. "command": "make",
  8. "options": {
  9. "cwd": "${workspaceRoot}"
  10. }
  11. },
  12. {
  13. "label": "make debug",
  14. "type": "shell",
  15. "command": "make",
  16. "args": [
  17. "debug"
  18. ],
  19. "options": {
  20. "cwd": "${workspaceRoot}"
  21. }
  22. },
  23. ]
  24. }