generated from LiteLDev/levilamina-mod-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxmake.lua
42 lines (35 loc) · 1.29 KB
/
xmake.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
add_rules("mode.debug", "mode.release")
add_repositories("liteldev-repo https://github.com/LiteLDev/xmake-repo.git")
if is_config("target_type", "server") then
add_requires("levilamina 1.0.0-rc.3", {configs = {target_type = "server"}})
else
add_requires("levilamina 1.0.0-rc.3", {configs = {target_type = "client"}})
end
add_requires("levibuildscript", "simpleini")
if not has_config("vs_runtime") then
set_runtimes("MD")
end
option("target_type")
set_default("server")
set_showmenu(true)
set_values("server", "client")
option_end()
target("BackupHelper")
add_rules("@levibuildscript/linkrule")
add_rules("@levibuildscript/modpacker")
add_cxflags( "/EHa", "/utf-8", "/W4", "/w44265", "/w44289", "/w44296", "/w45263", "/w44738", "/w45204")
add_defines("NOMINMAX", "UNICODE")
add_packages("levilamina", "simpleini")
set_exceptions("none")
set_kind("shared")
set_languages("c++20")
set_symbols("debug")
add_files("src/**.cpp")
add_includedirs("src")
after_build(function (target)
local assetdir = path.join(os.projectdir(), "assets")
local bindir = path.join(os.projectdir(), "bin")
local outputdir = path.join(bindir, target:name())
os.mkdir(outputdir)
os.cp(path.join(assetdir, "*"), outputdir)
end)