tasks.json 256 B

12345678910111213
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "0.1.0",
  5. "command": "make",
  6. "isShellCommand": true,
  7. "args": [
  8. "TARGET=Debug",
  9. "engine",
  10. "-j9"
  11. ],
  12. "showOutput": "always"
  13. }