Ai
2 Star 11 Fork 2

LCUI 开发/快速上手示例

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
xmake.lua 920 Bytes
一键复制 编辑 原始数据 按行查看 历史
liu 提交于 2025-01-27 17:00 +08:00 . build: delete on_run()
set_project("app")
set_version("1.0.0")
set_warnings("all")
add_rules("mode.debug", "mode.release")
add_defines("_CRT_SECURE_NO_WARNINGS")
includes("@builtin/xpack")
includes("vendor/LCUI/xmake.lua")
target("app")
if is_plat("windows") then
add_rules("win.sdk.application")
add_files("version.rc")
end
set_configdir("include")
set_rundir("dist")
add_deps("lcui")
set_kind("binary")
add_files("app/**.c")
xpack("app")
set_title("LCUI Quick Start ($(arch))")
set_description("A minimal LCUI application")
set_author("i@lc-soft.io")
set_maintainer("i@lc-soft.io")
set_copyright("Copyright (C) 2014-present, Liu Chao <i@lc-soft.io>")
set_licensefile("./LICENSE.txt")
set_formats("nsis", "zip")
set_basename("lcui-quick-start-v$(version)")
add_installfiles("dist/(**)")
add_targets("app")
set_bindir("./")
set_iconfile("logo.ico")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/lcui-dev/lcui-quick-start.git
git@gitee.com:lcui-dev/lcui-quick-start.git
lcui-dev
lcui-quick-start
快速上手示例
develop

搜索帮助