zengine/engine/xmake/rule_plugin/xmake.lua
2024-07-31 10:48:28 +08:00

8 lines
240 B
Lua

rule("engine.plugin")
set_extensions(".h")
on_load(function (target)
import("make_plugin")
local file = target:extraconf("rules", "engine.plugin", "file")
make_plugin(target, file or "module.h")
end)