zengine/engine/xmake/rule_plugin/xmake.lua

7 lines
235 B
Lua
Raw Normal View History

2024-07-20 18:04:19 +08:00
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)