-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxmake.lua
More file actions
48 lines (42 loc) · 1.55 KB
/
Copy pathxmake.lua
File metadata and controls
48 lines (42 loc) · 1.55 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
add_rules("mode.debug", "mode.release")
add_repositories("levimc-repo https://github.com/LiteLDev/xmake-repo.git")
option("target_type")
set_default("client")
set_showmenu(true)
set_values("client")
option_end()
add_requires("levilamina 26.10.14", {configs = {target_type = get_config("target_type")}})
add_requireconfs("levilamina.rapidjson", {version = "2025.02.05", override = true})
add_requires("levibuildscript")
if not has_config("vs_runtime") then
set_runtimes("MD")
end
target("fast-reconnect")
add_rules("@levibuildscript/linkrule")
add_rules("@levibuildscript/modpacker", {modVersion = "0.2.0"})
if is_plat("windows") then
add_defines("NOMINMAX", "UNICODE")
set_exceptions("none") -- To avoid conflicts with /EHa.
add_cxflags( "/EHa", "/utf-8", "/W4", "/w44265", "/w44289", "/w44296", "/w45263", "/w44738", "/w45204")
add_cxflags(
"/EHs",
"-Wno-microsoft-cast",
"-Wno-invalid-offsetof",
"-Wno-c++2b-extensions",
"-Wno-microsoft-include",
"-Wno-overloaded-virtual",
"-Wno-ignored-qualifiers",
"-Wno-missing-field-initializers",
"-Wno-potentially-evaluated-expression",
"-Wno-pragma-system-header-outside-header",
{tools = {"clang_cl"}}
)
set_toolchains("clang-cl")
end
add_packages("levilamina")
set_kind("shared")
set_languages("c++20")
set_symbols("debug")
add_headerfiles("src/**.h")
add_files("src/**.cpp")
add_includedirs("src")