-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathxmake.lua
More file actions
52 lines (48 loc) · 1.39 KB
/
xmake.lua
File metadata and controls
52 lines (48 loc) · 1.39 KB
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
43
44
45
46
47
48
49
50
51
52
add_rules("mode.debug", "mode.release")
add_repositories("liteldev-repo https://github.com/LiteLDev/xmake-repo.git")
add_repositories("groupmountain-repo https://github.com/GroupMountain/xmake-repo.git")
add_requires("levilamina 1.9.5", {configs = {target_type = "server"}})
add_requires("levibuildscript 0.6.0")
add_requires("gmlib 1.9.0")
if not has_config("vs_runtime") then
set_runtimes("MD")
end
target("GMSidebar")
add_rules("@levibuildscript/linkrule")
add_rules("@levibuildscript/modpacker")
add_cxflags(
"/EHa",
"/utf-8",
"/W4",
"/w44265",
"/w44289",
"/w44296",
"/w45263",
"/w44738",
"/w45204"
)
add_defines(
"NOMINMAX",
"UNICODE",
"_HAS_CXX23=1",
"GMSidebar_EXPORTS"
)
add_defines("LL_PLAT_S") --TODO: check client compatibility
add_packages(
"levilamina",
"gmlib"
)
set_optimize("aggressive")
set_exceptions("none")
set_kind("shared")
set_languages("c++20")
set_symbols("debug")
add_headerfiles("src/**.h")
add_files("src/**.cpp")
add_includedirs("src")
after_build(function (target)
local origin = path.join(os.projectdir(), "lang")
local target = path.join(os.projectdir(), "bin", target:name(), "lang")
if os.exists(target) then os.rm(target) end
os.cp(origin, target)
end)