37 lines
938 B
Lua
37 lines
938 B
Lua
add_rules("mode.debug", "mode.release", "mode.releasedbg")
|
|
|
|
add_repositories("liteldev-repo https://github.com/LiteLDev/xmake-repo.git")
|
|
add_requires("levilamina 0.2.2") -- or add_requires("levilamina x.x.x") to specify target LeviLamina version
|
|
|
|
target("Cleaner") -- Change this to your plugin name.
|
|
add_cxflags(
|
|
"/EHa",
|
|
"/utf-8"
|
|
)
|
|
add_files(
|
|
"src/**.cpp"
|
|
)
|
|
add_includedirs(
|
|
"src"
|
|
)
|
|
add_packages(
|
|
"levilamina"
|
|
)
|
|
add_shflags(
|
|
"/DELAYLOAD:bedrock_server.dll"
|
|
)
|
|
set_exceptions("none")
|
|
set_kind("shared")
|
|
set_languages("cxx23")
|
|
|
|
after_build(function (target)
|
|
local plugin_packer = import("scripts.after_build")
|
|
|
|
local plugin_define = {
|
|
pluginName = target:name(),
|
|
pluginFile = path.filename(target:targetfile()),
|
|
}
|
|
|
|
plugin_packer.pack_plugin(target,plugin_define)
|
|
end)
|