zengine/engine/tools/xmake.lua

7 lines
172 B
Lua
Raw Permalink Normal View History

2024-07-31 10:48:28 +08:00
function tool_target(name, kind)
2024-07-20 18:04:19 +08:00
target(name)
2024-07-31 10:48:28 +08:00
set_kind(kind or "binary")
2024-07-20 18:04:19 +08:00
set_group("Tools")
2024-07-31 10:48:28 +08:00
add_rules("engine.tool")
2024-07-20 18:04:19 +08:00
end
includes("*/xmake.lua")