tasks.json 327 B

12345678910111213141516171819
  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": "make",
  8. "type": "shell",
  9. "command": "make",
  10. "args": [
  11. "TARGET=Debug",
  12. "engine",
  13. "-j7"
  14. ],
  15. "problemMatcher": [],
  16. "group": "build"
  17. }
  18. ]
  19. }