-
-
Notifications
You must be signed in to change notification settings - Fork 818
/
Copy pathxmake.lua
158 lines (136 loc) · 3.88 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
-- project
set_project("xmake")
-- version
set_version("2.9.7", {build = "%Y%m%d"})
-- set xmake min version
set_xmakever("2.8.5")
-- set all warnings as errors
set_warnings("all", "error")
-- set language: c99, c++11
set_languages("c99", "cxx11")
-- add release and debug modes
add_rules("mode.release", "mode.debug")
if is_mode("release") then
set_optimize("smallest")
if is_plat("windows") then
add_ldflags("/LTCG")
end
end
-- disable some compiler errors
add_cxflags("-Wno-error=deprecated-declarations", "-fno-strict-aliasing", "-Wno-error=nullability-completeness", "-Wno-error=parentheses-equality")
-- add definitions
add_defines("_GNU_SOURCE=1", "_FILE_OFFSET_BITS=64", "_LARGEFILE_SOURCE")
-- add vectorexts
--[[
if is_arch("x86", "x64", "i386", "x86_64") then
add_vectorexts("sse", "sse2", "sse3", "avx", "avx2")
elseif is_arch("arm.*") then
add_vectorexts("neon")
end]]
-- for the windows platform (msvc)
if is_plat("windows") then
set_runtimes("MT")
add_ldflags("-nodefaultlib:msvcrt.lib")
add_links("kernel32", "user32", "gdi32")
end
-- for mode coverage
if is_mode("coverage") then
add_ldflags("-coverage", "-fprofile-arcs", "-ftest-coverage")
end
-- set cosmocc toolchain, e.g. xmake f -p linux --cosmocc=y
if has_config("cosmocc") then
add_requires("cosmocc")
set_toolchains("@cosmocc")
set_policy("build.ccache", false)
end
-- use cosmocc toolchain
option("cosmocc", {default = false, description = "Use cosmocc toolchain to build once and run anywhere."})
-- embed all script files
option("embed", {default = false, description = "Embed all script files."})
-- the runtime option
option("runtime")
set_default("lua")
set_description("Use luajit or lua runtime")
set_values("luajit", "lua")
option_end()
-- the lua-cjson option
option("lua_cjson")
set_default(true)
set_description("Use lua-cjson as json parser")
option_end()
-- the readline option
option("readline")
set_description("Enable or disable readline library")
add_links("readline")
add_cincludes("stdio.h", "readline/readline.h")
add_cfuncs("readline")
add_defines("XM_CONFIG_API_HAVE_READLINE")
add_deps("cosmocc")
after_check(function (option)
if option:dep("cosmocc"):enabled() then
option:enable(false)
end
end)
option_end()
-- the curses option
option("curses")
set_description("Enable or disable curses library")
add_defines("XM_CONFIG_API_HAVE_CURSES")
add_deps("cosmocc")
before_check(function (option)
if is_plat("mingw") then
option:add("cincludes", "ncursesw/curses.h")
option:add("links", "ncursesw")
else
option:add("cincludes", "curses.h")
option:add("links", "curses")
end
end)
after_check(function (option)
if option:dep("cosmocc"):enabled() then
option:enable(false)
end
end)
option_end()
-- the pdcurses option
option("pdcurses")
set_default(true)
set_description("Enable or disable pdcurses library")
add_defines("PDCURSES")
add_defines("XM_CONFIG_API_HAVE_CURSES")
option_end()
-- only build xmake libraries for development?
option("onlylib")
set_default(false)
set_description("Only build xmake libraries for development")
option_end()
-- suppress warnings
if is_plat("windows") then
add_defines("_CRT_SECURE_NO_WARNINGS")
add_cxflags("/utf-8")
end
-- add projects
includes("src/sv", "src/lz4", "src/xmake", "src/cli")
if namespace then
namespace("tbox", function ()
includes("src/tbox")
end)
else
includes("src/tbox")
end
if has_config("lua_cjson") then
includes("src/lua-cjson")
end
if is_config("runtime", "luajit") then
includes("src/luajit")
else
includes("src/lua")
end
if is_plat("windows") then
includes("src/pdcurses")
end
-- add xpack
includes("@builtin/xpack")
if xpack then
includes("xpack.lua")
end