tasks.json 703 B

12345678910111213141516171819202122232425
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "ac632n_spp_and_le",
  6. "type": "shell",
  7. "windows": {
  8. "command": ".vscode/winmk.bat ac632n_spp_and_le"
  9. },
  10. "command": "make ac632n_spp_and_le -j`nproc`",
  11. "problemMatcher": [],
  12. "group": "build"
  13. },
  14. {
  15. "label": "clean_ac632n_spp_and_le",
  16. "type": "shell",
  17. "windows": {
  18. "command": ".vscode/winmk.bat clean_ac632n_spp_and_le"
  19. },
  20. "command": "make clean_ac632n_spp_and_le -j`nproc`",
  21. "problemMatcher": [],
  22. "group": "build"
  23. }
  24. ]
  25. }