From 3757532bc3fe02c08b01940b0ed231150ab60b3d Mon Sep 17 00:00:00 2001 From: bernard Date: Sat, 3 Dec 2022 21:33:32 +0800 Subject: [PATCH] [BSP] Add smart.json for qemu-virt64-aarch64 --- bsp/qemu-virt64-aarch64/.vscode/smart.json | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 bsp/qemu-virt64-aarch64/.vscode/smart.json diff --git a/bsp/qemu-virt64-aarch64/.vscode/smart.json b/bsp/qemu-virt64-aarch64/.vscode/smart.json new file mode 100644 index 0000000000..ca43159535 --- /dev/null +++ b/bsp/qemu-virt64-aarch64/.vscode/smart.json @@ -0,0 +1,40 @@ +{ + "env": { + "windows": { + "VENV_MODE": true, + "PATH": "%PATH%;%RTT_EXEC_PATH%" + }, + "linux": { + "PATH": "$PATH:$RTT_EXEC_PATH" + } + }, + "statusBarItem": { + "build": { + "icon": "$(zap)", + "enable": true, + "commands": [ + "scons -j 8" + ], + "label": "编译", + "tooltip": "编译内核" + }, + "clean": { + "icon": "$(clear-all)", + "enable": true, + "commands": [ + "scons -c" + ], + "label": "清理", + "tooltip": "清理内核" + }, + "refresh": { + "icon": "$(sync)", + "enable": true, + "commands": [ + "scons --target=vsc -s" + ], + "label": "刷新", + "tooltip": "刷新vscode配置" + } + } +} \ No newline at end of file -- Gitee