-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathxmake.lua
More file actions
393 lines (357 loc) · 10.8 KB
/
Copy pathxmake.lua
File metadata and controls
393 lines (357 loc) · 10.8 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
set_project("kotatsu")
add_rules("mode.debug", "mode.release", "mode.releasedbg")
set_allowedplats("windows", "linux", "macosx")
option("dev", { default = true })
option("test", { default = true })
option("async", { default = true })
option("http", { default = true })
option("ztest", { default = true })
option("codec", { default = true })
option("deco", { default = true })
option("codec_simdjson", { default = false })
option("codec_flatbuffers", { default = false })
option("codec_toml", { default = false })
if has_config("ztest") and not has_config("deco") then
raise("ztest requires deco")
end
if has_config("http") and not has_config("async") then
raise("http requires async")
end
if has_config("dev") then
-- Don't fetch system package
set_policy("package.install_only", true)
set_policy("build.ccache", true)
-- Keep Windows toolchains aligned with third-party prebuilt packages (e.g. cpptrace),
-- otherwise ASan-specific /failifmismatch metadata can break linking.
if is_mode("debug") and not is_plat("windows") then
set_policy("build.sanitizer.address", true)
end
add_rules("plugin.compile_commands.autoupdate", { outputdir = "build", lsp = "clangd" })
if is_plat("windows") then
set_runtimes("MD")
local toolchain = get_config("toolchain")
if toolchain == "clang" then
add_ldflags("-fuse-ld=lld-link")
add_shflags("-fuse-ld=lld-link")
elseif toolchain == "clang-cl" then
set_toolset("ld", "lld-link")
set_toolset("sh", "lld-link")
end
elseif is_plat("macosx") then
add_ldflags("-fuse-ld=lld")
add_shflags("-fuse-ld=lld")
add_requireconfs("**|cmake", {
configs = {
ldflags = "-fuse-ld=lld",
shflags = "-fuse-ld=lld",
},
})
end
end
set_languages("c++23")
if is_plat("windows") then
add_defines("NOMINMAX", "WIN32_LEAN_AND_MEAN")
end
if has_config("async") then
add_requires("libuv v1.52.0")
end
if has_config("http") then
add_requires("libcurl 8.11.0")
end
if has_config("ztest") then
add_requires("cpptrace v1.0.4")
end
if has_config("codec") and has_config("codec_simdjson") then
add_requires("simdjson v4.2.4")
end
if has_config("codec") and has_config("codec_flatbuffers") then
add_requires("flatbuffers v25.2.10")
end
if has_config("codec") and has_config("codec_toml") then
add_requires("toml++ v3.4.0")
end
if has_config("test") and is_plat("windows") then
add_requires("unistd_h")
end
rule("cl-flags")
on_load(function(target)
target:add("cxflags", "cl::/Zc:preprocessor", "cl::/utf-8", { public = true })
end)
target("support", function()
set_kind("$(kind)")
add_files("src/support/*.cpp")
add_includedirs("include", { public = true })
add_headerfiles("include/(kota/support/*)")
add_rules("cl-flags")
end)
target("meta", function()
set_kind("headeronly")
add_includedirs("include", { public = true })
add_headerfiles("include/(kota/meta/*)")
add_deps("support")
add_rules("cl-flags")
end)
if has_config("codec") and has_config("codec_simdjson") then
target("codec_json", function()
set_kind("headeronly")
add_includedirs("include", { public = true })
add_headerfiles(
"include/(kota/codec/json.h)",
"include/(kota/codec/json/**.h)",
"include/(kota/codec/dyn.h)",
"include/(kota/codec/dyn/**.h)",
"include/(kota/codec/dyn/**.inl)"
)
add_rules("cl-flags")
add_deps("meta")
add_packages("simdjson", { public = true })
end)
end
if has_config("codec") and has_config("codec_flatbuffers") then
target("codec_flatbuffers", function()
set_kind("headeronly")
add_includedirs("include", { public = true })
add_headerfiles("include/(kota/codec/fbs.h)", "include/(kota/codec/fbs/**.h)")
add_rules("cl-flags")
add_deps("meta")
add_packages("flatbuffers", { public = true })
end)
end
if has_config("codec") and has_config("codec_toml") then
target("codec_toml", function()
set_kind("headeronly")
add_includedirs("include", { public = true })
add_headerfiles("include/(kota/codec/toml.h)", "include/(kota/codec/toml/**.h)")
add_rules("cl-flags")
add_deps("meta")
add_packages("toml++", { public = true })
-- Keep in sync with src/codec/CMakeLists.txt and kota/codec/toml/type.h:
-- toml++ is pinned to no-exceptions mode unconditionally, and the pin
-- must propagate to consumers that include toml++ headers directly.
add_defines("TOML_EXCEPTIONS=0", { public = true })
end)
end
if has_config("codec") then
target("codec", function()
set_kind("headeronly")
add_includedirs("include", { public = true })
add_headerfiles(
"include/(kota/codec/bincode.h)",
"include/(kota/codec/bincode/**.h)",
"include/(kota/codec/debug/**.h)",
"include/(kota/codec/*.h)"
)
add_rules("cl-flags")
add_deps("support", "meta")
if has_config("codec_simdjson") then
add_headerfiles(
"include/(kota/codec/json.h)",
"include/(kota/codec/json/**.h)",
"include/(kota/codec/dyn.h)",
"include/(kota/codec/dyn/**.h)",
"include/(kota/codec/dyn/**.inl)"
)
add_deps("codec_json")
end
if has_config("codec_flatbuffers") then
add_headerfiles("include/(kota/codec/fbs.h)", "include/(kota/codec/fbs/**.h)")
add_deps("codec_flatbuffers")
end
if has_config("codec_toml") then
add_headerfiles("include/(kota/codec/toml.h)", "include/(kota/codec/toml/**.h)")
add_deps("codec_toml")
end
end)
end
if has_config("ztest") then
target("ztest", function()
set_kind("$(kind)")
add_files("src/zest/*.cpp")
add_includedirs("include", { public = true })
add_headerfiles("include/(kota/zest/**)")
add_rules("cl-flags")
add_deps("support", "deco")
add_packages("cpptrace", { public = true })
end)
end
if has_config("async") then
target("async", function()
set_kind("$(kind)")
add_rules("cl-flags")
add_files("src/async/**.cpp")
add_includedirs("include", { public = true })
add_headerfiles("include/(kota/async/**)")
add_deps("support")
add_packages("libuv", { public = true })
end)
end
if has_config("http") then
target("http", function()
set_kind("$(kind)")
add_rules("cl-flags")
add_files("src/http/**.cpp")
add_includedirs("include", { public = true })
add_headerfiles("include/(kota/http/**)")
add_deps("async")
if has_config("codec") and has_config("codec_simdjson") then
add_deps("codec_json")
end
add_packages("libcurl", { public = true })
end)
end
if has_config("deco") then
target("deco", function()
set_kind("$(kind)")
add_files("src/deco/**.cc")
add_includedirs("include", { public = true })
add_rules("cl-flags")
add_headerfiles(
"include/(kota/deco/option.h)",
"include/(kota/deco/deco.h)",
"include/(kota/deco/macro.h)",
"include/(kota/deco/option/**.h)",
"include/(kota/deco/facade/**.h)"
)
add_deps("support")
end)
end
if has_config("async") then
target("ipc", function()
set_kind("$(kind)")
add_rules("cl-flags")
add_files("src/ipc/*.cpp")
add_files("src/ipc/codec/bincode.cpp")
add_includedirs("include", { public = true })
add_headerfiles("include/(kota/ipc/*)")
if has_config("codec") and has_config("codec_simdjson") then
add_files("src/ipc/codec/json.cpp")
add_deps("codec_json")
end
add_deps("async")
end)
target("language", function()
set_kind("$(kind)")
add_rules("cl-flags")
add_files("src/ipc/lsp/*.cpp")
add_includedirs("include", { public = true })
add_headerfiles("include/(kota/ipc/lsp/*)")
add_deps("ipc")
end)
end
target("kotatsu", function()
set_default(false)
set_kind("static")
add_rules("cl-flags")
add_includedirs("include", { public = true })
add_headerfiles("include/(kota/**)")
add_deps("support", "meta", { public = true })
if has_config("codec") then
add_deps("codec", { public = true })
if has_config("codec_simdjson") then
add_deps("codec_json", { public = true })
add_packages("simdjson", { public = true })
end
if has_config("codec_flatbuffers") then
add_deps("codec_flatbuffers", { public = true })
add_packages("flatbuffers", { public = true })
end
if has_config("codec_toml") then
add_deps("codec_toml", { public = true })
add_packages("toml++", { public = true })
end
end
if has_config("deco") then
add_deps("deco", { public = true })
end
if has_config("ztest") then
add_deps("ztest", { public = true })
add_packages("cpptrace", { public = true })
end
if has_config("async") then
add_deps("async", { public = true })
add_packages("libuv", { public = true })
end
if has_config("http") then
add_deps("http", { public = true })
add_packages("libcurl", { public = true })
end
if has_config("async") then
add_deps("ipc", "language", { public = true })
end
after_link(function(target, opt)
import("utils.archive.merge_staticlib")
import("core.project.depend")
import("utils.progress")
local libraryfiles = {}
for _, dep in ipairs(target:orderdeps()) do
if dep:is_static() then
table.insert(libraryfiles, dep:targetfile())
end
end
depend.on_changed(function()
progress.show(opt.progress, "${color.build.target}merging.$(mode) %s", path.filename(target:targetfile()))
if #libraryfiles > 0 then
local tmpfile = os.tmpfile() .. path.extension(target:targetfile())
merge_staticlib(target, tmpfile, libraryfiles)
os.cp(tmpfile, target:targetfile())
os.rm(tmpfile)
end
end, {
dependfile = target:dependfile(target:targetfile() .. ".merge_archive"),
files = libraryfiles,
changed = target:is_rebuilt(),
})
end)
end)
if has_config("test") and has_config("ztest") then
target("unit_tests", function()
set_default(false)
set_kind("binary")
set_rundir("$(projectdir)")
add_rules("cl-flags")
add_includedirs("tests")
add_files(
"tests/unit/main.cpp",
"tests/unit/support/**.cpp",
"tests/unit/meta/**.cpp",
"tests/unit/zest/**.cpp"
)
if has_config("async") then
add_files("tests/unit/async/**.cpp")
add_includedirs("examples/build_system")
end
if has_config("option") then
add_files("tests/unit/option/**.cpp")
end
if has_config("deco") and has_config("option") then
add_files("tests/unit/deco/**.cc")
end
if has_config("codec") and has_config("codec_simdjson") then
add_files("tests/unit/codec/json/**.cpp")
-- Lets always-built suites opt into cases that need the JSON codec,
-- such as zest's EXPECT_SNAPSHOT_JSON tests.
add_defines("KOTA_TEST_HAS_JSON=1")
end
if has_config("codec") then
add_files("tests/unit/codec/dyn/**.cpp")
end
if has_config("codec") and has_config("codec_flatbuffers") then
add_files("tests/unit/codec/fbs/**.cpp")
end
if has_config("codec") and has_config("codec_toml") then
add_files("tests/unit/codec/toml/**.cpp")
end
if has_config("codec") then
add_files("tests/unit/codec/bincode/**.cpp")
add_files("tests/unit/codec/debug/**.cpp")
end
if has_config("async") and has_config("codec") and has_config("codec_simdjson") then
add_files("tests/unit/ipc/**.cpp")
end
if has_config("http") then
add_files("tests/unit/http/**.cpp")
end
add_deps("kotatsu")
add_tests("default", { runargs = { "--snapshot-dir=tests/snapshots" } })
end)
end