XMake是一个基于Lua的轻量级跨平台自动构建工具,支持在各种主流平台上构建项目
xmake的目标是开发者更加关注于项目本身开发,简化项目的描述和构建,并且提供平台无关性,使得一次编写,随处构建
它跟cmake、automake、premake有点类似,但是机制不同,它默认不会去生成IDE相关的工程文件,采用直接编译,并且更加的方便易用 采用lua的工程描述语法更简洁直观,支持在大部分常用平台上进行构建,以及交叉编译
并且xmake提供了创建、配置、编译、打包、安装、卸载、运行等一些actions,使得开发和构建更加的方便和流程化。
不仅如此,它还提供了许多更加高级的特性,例如插件扩展、脚本宏记录、批量打包、自动文档生成等等。。
如果你想要了解更多,请参考:
_ __ ___ __ __ __ _| | ______ \ \/ / | \/ |/ _ | |/ / __ \ > < | \__/ | /_| | < ___/ /_/\_\_|_| |_|\__ \|_|\_\____| by ruki, tboox.org
bash #### 使用wget bash #### 使用powershell Invoke-Expression (Invoke-Webrequest 'https://raw.githubusercontent.com/tboox/xmake/master/scripts/get.ps1' -UseBasicParsing).Content
官方的xmake包管理仓库: xmake-repo
$ xmake
$ xmake run console
$ xmake run -d console
$ xmake f -p [windows|linux|macosx|android|iphoneos ..] -a [x86|arm64 ..] -m [debug|release] $ xmake
$ xmake f --menu
$ xmake m -b # 开始记录 $ xmake f -p iphoneos -m debug $ xmake $ xmake f -p android --ndk=~/files/android-ndk-r16b $ xmake $ xmake m -e # 结束记录 $ xmake m . # 回放命令
$ xmake l ./test.lua $ xmake l -c "print('hello xmake!')" $ xmake l lib.detect.find_tool gcc
$ xmake project -k vs2017 -m "debug,release"
$ xmake doxygen [srcdir]
请到插件仓库进行下载安装: xmake-plugins.
Debug和Release模式:
add_rules("mode.debug", "mode.release") target("console") set_kind("binary") add_files("src/*.c") if is_plat("windows", "mingw") then add_defines("XXX") end
自定义脚本:
target("test") set_kind("static") add_files("src/*.cpp") after_build(function (target) print("build %s ok!", target:targetfile()) end)
使用扩展模块:
target("test") set_kind("shared") add_files("src/*.c") on_load(function (target) import("lib.detect.find_package") target:add(find_package("zlib")) end)
一些使用xmake的项目: