-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpremake4.lua
426 lines (421 loc) · 11.9 KB
/
premake4.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
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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
newoption {
trigger = "llvm-path",
value = "filepath",
description = "The path of LLVM on this machine."
}
newoption {
trigger = "boost-path",
value = "filepath",
description = "The path of Boost on this machine."
}
newoption {
trigger = "zlib-path",
value = "filepath",
description = "The path of zlib on this machine."
}
newoption {
trigger = "libarchive-path",
value = "filepath",
description = "The path of libarchive on this machine.",
}
newoption {
trigger = "test",
description = "If this option is passed, run the tests as part of building.",
}
if not os.is("Windows") then
newoption {
trigger = "TeamCity",
value = "teamcity build number",
description = "If this build is being built on TeamCity"
}
end
local oldjoin = path.join
path.join = function(first, second, ...)
if first and second then
return path.join(oldjoin(first, second), ...)
elseif first and not second then
return first
end
if not first and second then
return path.join(second, ...)
end
error("Must provide at least one argument to path.join!\n" .. debug.traceback())
end
function AddClangDependencies(plat, conf)
if _OPTIONS["llvm-path"] then
local llvmconf = (os.is("windows") and conf) or _OPTIONS["llvm-conf"] or "Release+Asserts"
local llvmbuild = (os.is("windows") and "build") or ""
local llvmincludes = {
"tools/clang/include",
path.join(llvmbuild, "tools/clang/include"),
"include",
"tools/clang/lib",
path.join(llvmbuild, "include")
}
for k, v in pairs(llvmincludes) do
includedirs({ path.join(_OPTIONS["llvm-path"], v) })
end
if os.is("windows") then
if plat == 'x64' then
llvmbuild = path.join(llvmbuild, 'x64')
end
end
if os.is("windows") then
libdirs({ path.join(_OPTIONS["llvm-path"], llvmbuild, llvmconf, "lib") })
else
libdirs({ path.join(_OPTIONS["llvm-path"], "Release+Asserts", "lib") })
end
else
buildoptions({ "-I `llvm-config-3.6 --includedir`" })
linkoptions({ "-L `llvm-config-3.6 --libdir`" })
includedirs({ "Wide/clang-include" })
end
local clanglibs = {
"clangFrontend",
"clangSerialization",
"clangDriver",
"clangTooling",
"clangCodeGen",
"clangParse",
"clangSema",
"clangAnalysis",
"clangRewriteFrontend",
"clangRewrite",
"clangEdit",
"clangAST",
"clangLex",
"clangBasic",
}
local libs = {
"LLVMLTO",
"LLVMObjCARCOpts",
"LLVMLinker",
"LLVMBitWriter",
"LLVMIRReader",
"LLVMAsmParser",
"LLVMR600CodeGen",
"LLVMipo",
"LLVMVectorize",
"LLVMR600AsmParser",
"LLVMR600Desc",
"LLVMR600Info",
"LLVMR600AsmPrinter",
"LLVMSystemZDisassembler",
"LLVMSystemZCodeGen",
"LLVMSystemZAsmParser",
"LLVMSystemZDesc",
"LLVMSystemZInfo",
"LLVMSystemZAsmPrinter",
"LLVMHexagonDisassembler",
"LLVMHexagonCodeGen",
"LLVMHexagonDesc",
"LLVMHexagonInfo",
"LLVMNVPTXCodeGen",
"LLVMNVPTXDesc",
"LLVMNVPTXInfo",
"LLVMNVPTXAsmPrinter",
"LLVMCppBackendCodeGen",
"LLVMCppBackendInfo",
"LLVMMSP430CodeGen",
"LLVMMSP430Desc",
"LLVMMSP430Info",
"LLVMMSP430AsmPrinter",
"LLVMXCoreDisassembler",
"LLVMXCoreCodeGen",
"LLVMXCoreDesc",
"LLVMXCoreInfo",
"LLVMXCoreAsmPrinter",
"LLVMMipsDisassembler",
"LLVMMipsCodeGen",
"LLVMMipsAsmParser",
"LLVMMipsDesc",
"LLVMMipsInfo",
"LLVMMipsAsmPrinter",
"LLVMAArch64Disassembler",
"LLVMAArch64CodeGen",
"LLVMAArch64AsmParser",
"LLVMAArch64Desc",
"LLVMAArch64Info",
"LLVMAArch64AsmPrinter",
"LLVMAArch64Utils",
"LLVMARMDisassembler",
"LLVMARMCodeGen",
"LLVMARMAsmParser",
"LLVMARMDesc",
"LLVMARMInfo",
"LLVMARMAsmPrinter",
"LLVMPowerPCDisassembler",
"LLVMPowerPCCodeGen",
"LLVMPowerPCAsmParser",
"LLVMPowerPCDesc",
"LLVMPowerPCInfo",
"LLVMPowerPCAsmPrinter",
"LLVMSparcDisassembler",
"LLVMSparcCodeGen",
"LLVMSparcAsmParser",
"LLVMSparcDesc",
"LLVMSparcInfo",
"LLVMSparcAsmPrinter",
"LLVMTableGen",
"LLVMDebugInfo",
"LLVMOption",
"LLVMX86Disassembler",
"LLVMX86AsmParser",
"LLVMX86CodeGen",
"LLVMSelectionDAG",
"LLVMAsmPrinter",
"LLVMX86Desc",
"LLVMMCDisassembler",
"LLVMX86Info",
"LLVMX86AsmPrinter",
"LLVMX86Utils",
"LLVMMCJIT",
"LLVMLineEditor",
"LLVMInstrumentation",
"LLVMInterpreter",
"LLVMExecutionEngine",
"LLVMRuntimeDyld",
"LLVMCodeGen",
"LLVMScalarOpts",
"LLVMProfileData",
"LLVMObject",
"LLVMMCParser",
"LLVMBitReader",
"LLVMInstCombine",
"LLVMTransformUtils",
"LLVMipa",
"LLVMAnalysis",
"LLVMTarget",
"LLVMMC",
"LLVMCore",
"LLVMSupport"
}
for k, v in pairs(clanglibs) do
links { v }
end
for k, v in pairs(libs) do
links { v }
end
if not os.is("windows") then
links { "dl", "pthread", "ncurses" }
return
end
end
function AddBoostDependencies(plat, conf)
if _OPTIONS["boost-path"] then
local boostincludes = {
""
}
for k, v in pairs(boostincludes) do
includedirs({ path.join(_OPTIONS["boost-path"], v) })
end
local boostlib = "stage"
if os.is("windows") then
if plat == "x64" then
boostlib = path.join(boostlib, plat)
end
end
libdirs({ path.join(_OPTIONS["boost-path"], boostlib, 'lib') })
end
if not os.is("windows") then
links { "boost_program_options" }
end
end
function AddLibarchiveDependency(plat, conf)
if _OPTIONS["libarchive-path"] then
includedirs({ path.join(_OPTIONS["libarchive-path"], 'libarchive' ) })
libdirs({ path.join(_OPTIONS["libarchive-path"], "lib/libarchive", conf ) })
end
if os.is("windows") then
links { "archive_static" }
else
links { "archive" }
end
end
function AddZlibDependency(plat, conf)
if _OPTIONS["zlib-path"] then
if plat == "x32" then plat = "x86" end
libdirs({ path.join(_OPTIONS["zlib-path"], "zlib/contrib/vstudio/vc11", plat, "ZlibStat" .. conf ) })
includedirs({ _OPTIONS["zlib-path"] })
end
if os.is("windows") then
links { "zlibstat" }
else
links { "z" }
end
end
if os.is("windows") then
if not _OPTIONS["boost-path"] then
print("Error: boost-path was not provided.\n")
return
end
if not _OPTIONS["libarchive-path"] then
print("Error: libarchive-path was not provided.\n")
return
end
if not _OPTIONS["zlib-path"] then
print("Error: zlib-path was not provided.\n")
return
end
if not _OPTIONS["llvm-path"] then
print("Error: llvm-path was not provided.\n")
return
end
end
WideProjects = {
CLI = {
action = function(plat, conf)
links { "Util", "Lexer", "Parser", "Semantic" }
kind ("ConsoleApp")
end,
configure = function(plat, conf)
if os.is("windows") then
postbuildcommands ({ "copy /Y \"$(TargetDir)$(TargetName).exe\" \"$(SolutionDir)Deployment/Wide.exe\"" })
else
postbuildcommands ({ "mkdir -p ../Deployment", "cp -f \"../Build/" .. plat .. "/" .. conf .. "/CLI\" \"../Deployment/Wide\"" })
end
end,
},
Util = {},
Driver = {
action = function(plat, conf)
links { "Util", "Lexer", "Parser", "Semantic" }
end
},
Semantic = {
action = function()
links { "Util" }
end
},
Parser = {
action = function()
links { "Util" }
end
},
Lexer = {
action = function()
links { "Util" }
end
},
CAPI = {
action = function()
kind "SharedLib"
links { "Util", "Lexer", "Parser", "Semantic" }
end
},
WideLibrary = {
action = function()
files ({ "Wide/WideLibrary/**.wide"})
if os.is("windows") then
postbuildcommands ({ "(robocopy /mir \"Standard\" \"../Deployment/WideLibrary/Standard\") ^& IF %ERRORLEVEL% LEQ 1 exit 0" })
else
postbuildcommands ({ "cp -r ../WideLibrary ../Deployment/" })
end
end
},
ParserTest = {
action = function()
kind("ConsoleApp")
links { "Util", "Lexer", "Parser" }
end,
configure = function(plat, conf)
if _OPTIONS["test"] then
if os.is("windows") then
postbuildcommands ({ "$(TargetPath)" })
else
postbuildcommands ({ "$@" })
end
end
end,
},
LexerTest = {
action = function()
kind("ConsoleApp")
links { "Util", "Lexer" }
end,
configure = function(plat, conf)
if _OPTIONS["test"] then
if os.is("windows") then
postbuildcommands ({ "$(TargetPath)" })
else
postbuildcommands ({ "$@" })
end
end
end,
},
IntegrationTests = {
action = function(plat, conf)
kind("ConsoleApp")
links { "Util" }
files ({ "Wide/IntegrationTests/**.wide" })
end,
configure = function(plat, conf)
if _OPTIONS["test"] then
if os.is("windows") then
postbuildcommands ({ "$(TargetPath)" })
else
postbuildcommands ({ "$@" })
end
end
end,
},
SemanticTest = {
action = function(plat, conf)
kind("ConsoleApp")
links { "Util", "Lexer", "Parser", "Semantic" }
end,
configure = function(plat, conf)
if _OPTIONS["test"] then
if os.is("windows") then
postbuildcommands ({ "$(TargetPath)" })
else
postbuildcommands ({ "$@" })
end
end
end
}
}
local SupportedConfigurations = { "Debug", "Release" }
local SupportedPlatforms = { "x32", "x64" }
local sol = solution("Wide")
language("C++")
configurations(SupportedConfigurations)
platforms(SupportedPlatforms)
kind("StaticLib")
if not os.is("Windows") then
if _OPTIONS["TeamCity"] then
defines { "TEAMCITY=" .. _OPTIONS["TeamCity"] }
end
buildoptions {"-std=c++1y", "-D __STDC_CONSTANT_MACROS", "-D __STDC_LIMIT_MACROS", "-fPIC", "-Wno-deprecated" }
else
defines { "_SCL_SECURE_NO_WARNINGS" }
buildoptions {"/wd4503" }
end
includedirs("./")
includedirs("./Wide/jsonpp/")
location("Wide")
for name, proj in pairs(WideProjects) do
project(name)
location(path.join("Wide", name))
files( { path.join("Wide", name) .. "/**.cpp", path.join("Wide", name) .. "/**.h" })
for k, plat in pairs(SupportedPlatforms) do
for k, conf in pairs(SupportedConfigurations) do
configuration { plat, conf }
if proj.action then proj.action(plat, conf) end
AddClangDependencies(plat, conf)
AddBoostDependencies(plat, conf)
AddLibarchiveDependency(plat, conf)
AddZlibDependency(plat, conf)
if proj.configure then proj.configure(plat, conf) end
objdir(path.join("Wide/Obj", name))
if conf == "Debug" then
flags("Symbols")
defines { "NDEBUG" }
else
flags("Optimize")
defines { "NDEBUG" }
end
targetdir(path.join("Wide/Build", plat, conf))
end
end
end