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