xmake-vscode v1.0.8,在 VSCode 中构建 Qt/WDK 程序

  

xmake-vscode插件深度集成了xmake和vscode,提供方便快速的跨平台c/c++构建。

最近xmake新版本新增了 Qt/WDK编译环境支持,因此对vscode的集成插件也进行了一些更新支持。

此版本主要更新内容如下:

  • 兼容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\""
}

猜你喜欢

转载自www.oschina.net/news/97397/xmake-vscode-1-0-8-released