xmake-vscode插件深度集成了xmake和vscode,提供方便快速的跨平台c/c++构建。
此版本主要更新内容如下:
- 兼容windows下VScode+shell(cmd/bash)
- 修复windows下使用,偶尔出现命令在终端下被截断的问题
- 更新xmake的自动补全,支持最新版本API
- 增加对Qt、WDK环境的支持和配置
- 新增附加参数配置,实现交叉编译的配置支持
新增的配置内容如下:
"xmake.QtDirectory": {
"type": "string",
"default": "",
"description": "The Qt Directory"
},
"xmake.WDKDirectory": {
"type": "string",
"default": "",
"description": "The WDK Directory"
},
"xmake.additionalConfigArguments": {
"type": "string",
"default": "",
"description": "The Additional Config Arguments, .e.g --cc=gcc --cxflags=\"-DDEBUG\""
}