smart.json 773 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "env": {
  3. },
  4. "statusBarItem": {
  5. "build": {
  6. "icon": "$(zap)",
  7. "enable": true,
  8. "commands": [
  9. "scons"
  10. ],
  11. "label": "编译",
  12. "tooltip": "编译 RT-Thread 内核"
  13. },
  14. "clean": {
  15. "icon": "$(clear-all)",
  16. "enable": true,
  17. "commands": [
  18. "scons -c"
  19. ],
  20. "label": "清理",
  21. "tooltip": "清理 RT-Thread 内核"
  22. },
  23. "name" : {
  24. "icon" : "$(location)",
  25. "enable" : true,
  26. "commands" : [
  27. ""
  28. ],
  29. "label" : "QEMU Virt AArch64",
  30. "tooltip" : "项目名称"
  31. }
  32. }
  33. }