New features
- Add
XMAKE_LOGFILE
environment variable to dump the output info to file - Support tinyc compiler
Changes
- Improve support for IDE/editor plugins (.e.g vscode, sublime, intellij-idea)
- Add
.gitignore
file when creating new projects - Improve to create template project
- Improve to detect toolchains on macosx without xcode
- Improve
set_config_header
to supportset_config_header("config", {version = "2.1.8", build = "%Y%m%d%H%M"})
Bugs fixed
- #145: Fix the current directory when running target
新特性
- 添加
XMAKE_LOGFILE
环境变量,启用输出到日志文件 - 添加对tinyc编译器的支持
改进
- 改进对IDE和编辑器插件的集成支持,例如:Visual Studio Code, Sublime Text 以及 IntelliJ IDEA
- 当生成新工程的时候,自动生成一个
.gitignore
文件,忽略一些xmake的临时文件和目录 - 改进创建模板工程,使用模板名代替模板id作为参数
- 改进macOS编译平台的探测,如果没有安装xcode也能够进行编译构建,如果有编译器的话
- 改进
set_config_header
接口,支持局部版本号设置,优先于全局set_version
,例如:set_config_header("config", {version = "2.1.8", build = "%Y%m%d%H%M"})
Bugs修复
- #145: 修复运行target的当前目录环境