安装
有多种方法安装 LCUI,但在此之前你需要安装以下工具:
从源码目录安装
假设应用程序项目目录中有个 vendor 目录专用于存放第三方库的源码,那么我们可以手动下载 LCUI 的源码包然后解压到 vendor 目录中,再将 LCUI 的 xmake.lua 包含进来即可:
includes("vendor/LCUI/xmake.lua")
target("app")
set_kind("binary")
add_deps("lcui")
这种方式在需要升级 LCUI 版本的时候比较麻烦,可改用 git submodule 代替它:
git submodule add https://gitee.com/lc-soft/LCUI.git vendor/LCUI
git submodule update --init --recursive
更新版本:
git submodule sync --recursive
git submodule update --init --recursive