-
Notifications
You must be signed in to change notification settings - Fork 76
/
premake5-deps.lua
739 lines (664 loc) · 24.1 KB
/
premake5-deps.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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
require("premake", ">=5.0.0-beta2")
-- don't forget to set env var CMAKE_GENERATOR to one of these values:
-- https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html#manual:cmake-generators(7)
-- common ones
-- ============
-- Unix Makefiles
-- Visual Studio 17 2022
-- MSYS Makefiles
local os_iden = '' -- identifier
if os.target() == "windows" then
os_iden = 'win'
elseif os.target() == "linux" then
os_iden = 'linux'
else
error('Unsupported os target: "' .. os.target() .. '"')
end
-- options
---------
-- general
newoption {
category = "general",
trigger = "verbose",
description = "Verbose output",
}
newoption {
category = "general",
trigger = "clean",
description = "Cleanup before any action",
}
-- tools
newoption {
category = "tools",
trigger = "custom-cmake",
description = "Use custom cmake",
value = 'path/to/cmake.exe',
default = nil
}
newoption {
category = "tools",
trigger = "cmake-toolchain",
description = "Use cmake toolchain",
value = 'path/to/toolchain.cmake',
default = nil
}
newoption {
category = "tools",
trigger = "custom-extractor",
description = "Use custom extractor",
value = 'path/to/7z.exe',
default = nil
}
-- deps extraction
newoption {
category = "extract",
trigger = "all-ext",
description = "Extract all deps",
}
newoption {
category = "extract",
trigger = "ext-ssq",
description = "Extract ssq",
}
newoption {
category = "extract",
trigger = "ext-zlib",
description = "Extract zlib",
}
newoption {
category = "extract",
trigger = "ext-curl",
description = "Extract curl",
}
newoption {
category = "extract",
trigger = "ext-protobuf",
description = "Extract protobuf",
}
newoption {
category = "extract",
trigger = "ext-mbedtls",
description = "Extract mbedtls",
}
newoption {
category = "extract",
trigger = "ext-ingame_overlay",
description = "Extract ingame_overlay",
}
-- build
newoption {
category = "build",
trigger = "all-build",
description = "Build all deps",
}
newoption {
category = "build",
trigger = "j",
description = "Parallel build jobs, by default the max possible",
}
newoption {
category = "build",
trigger = "32-build",
description = "Build for 32-bit arch",
}
newoption {
category = "build",
trigger = "64-build",
description = "Build for 64-bit arch",
}
newoption {
category = "build",
trigger = "build-ssq",
description = "Build ssq",
}
newoption {
category = "build",
trigger = "build-zlib",
description = "Build zlib",
}
newoption {
category = "build",
trigger = "build-curl",
description = "Build curl",
}
newoption {
category = "build",
trigger = "build-protobuf",
description = "Build protobuf",
}
newoption {
category = "build",
trigger = "build-mbedtls",
description = "Build mbedtls",
}
newoption {
category = "build",
trigger = "build-ingame_overlay",
description = "Build ingame_overlay",
}
local function merge_list(src, dest)
local src_count = #src
local res = {}
for idx = 1, src_count do
res[idx] = src[idx]
end
for idx = 1, #dest do
res[src_count + idx] = dest[idx]
end
return res
end
if _OPTIONS['j'] and not string.match(_OPTIONS['j'], '^[1-9]+$') then
error("Invalid argument for --j")
end
-- common defs
---------
local deps_dir = path.getabsolute(path.join('build', 'deps', os_iden, _ACTION), _MAIN_SCRIPT_DIR)
local third_party_dir = path.getabsolute('third-party')
local third_party_deps_dir = path.join(third_party_dir, 'deps', os_iden)
local third_party_common_dir = path.join(third_party_dir, 'deps', 'common')
local extractor = os.realpath(path.join(third_party_deps_dir, '7za', '7za'))
local mycmake = os.realpath(path.join(third_party_deps_dir, 'cmake', 'bin', 'cmake'))
if _OPTIONS["custom-cmake"] then
mycmake = _OPTIONS["custom-cmake"]
print('using custom cmake: ' .. _OPTIONS["custom-cmake"])
else
if os.host() == 'windows' then
mycmake = mycmake .. '.exe'
end
if not os.isfile(mycmake) then
error('cmake is missing from third-party dir, you can specify custom cmake location, run the script with --help. cmake: ' .. mycmake)
end
end
if not third_party_dir or not os.isdir(third_party_dir) then
error('third-party dir is missing')
end
if _OPTIONS["custom-extractor"] then
extractor = _OPTIONS["custom-extractor"]
print('using custom extractor: ' .. _OPTIONS["custom-extractor"])
else
if os.host() == 'windows' then
extractor = extractor .. '.exe'
end
if not extractor or not os.isfile(extractor) then
error('extractor is missing from third-party dir. extractor: ' .. extractor)
end
end
-- ############## common CMAKE args ##############
-- https://cmake.org/cmake/help/latest/variable/CMAKE_LANG_FLAGS_CONFIG.html#variable:CMAKE_%3CLANG%3E_FLAGS_%3CCONFIG%3E
local cmake_common_defs = {
'CMAKE_BUILD_TYPE=Release',
'CMAKE_POSITION_INDEPENDENT_CODE=True',
'BUILD_SHARED_LIBS=OFF',
'CMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded',
}
local function cmake_build(dep_folder, is_32, extra_cmd_defs, c_flags_init, cxx_flags_init)
local dep_base = path.getabsolute(path.join(deps_dir, dep_folder))
local arch_iden = ''
if is_32 then
arch_iden = '32'
else
arch_iden = '64'
end
print('\n\nbuilding dep: "' .. dep_base .. '"')
local build_dir = path.getabsolute(path.join(dep_base, 'build' .. arch_iden))
local install_dir = path.join(dep_base, 'install' .. arch_iden)
-- clean if required
if _OPTIONS["clean"] then
print('cleaning dir: ' .. build_dir)
os.rmdir(build_dir)
print('cleaning dir: ' .. install_dir)
os.rmdir(install_dir)
end
if not os.mkdir(build_dir) then
error("failed to create build dir: " .. build_dir)
return
end
local cmake_common_defs_str = '-D' .. table.concat(cmake_common_defs, ' -D') .. ' -DCMAKE_INSTALL_PREFIX="' .. install_dir .. '"'
local cmd_gen = mycmake .. ' -S "' .. dep_base .. '" -B "' .. build_dir .. '" ' .. cmake_common_defs_str
local all_cflags_init = {}
local all_cxxflags_init = {}
-- c/cxx init flags based on arch/action
if string.match(_ACTION, 'gmake.*') then
if is_32 then
table.insert(all_cflags_init, '-m32')
table.insert(all_cxxflags_init, '-m32')
end
elseif string.match(_ACTION, 'vs.+') then
-- these 2 are needed because mbedtls doesn't care about 'CMAKE_MSVC_RUNTIME_LIBRARY' for some reason
table.insert(all_cflags_init, '/MT')
table.insert(all_cflags_init, '/D_MT')
table.insert(all_cxxflags_init, '/MT')
table.insert(all_cxxflags_init, '/D_MT')
local cmake_generator = os.getenv("CMAKE_GENERATOR") or ""
if cmake_generator == "" and os.host() == 'windows' or cmake_generator:find("Visual Studio") then
if is_32 then
cmd_gen = cmd_gen .. ' -A Win32'
else
cmd_gen = cmd_gen .. ' -A x64'
end
end
else
error("unsupported action for cmake build: " .. _ACTION)
return
end
-- add c/cxx extra init flags
if c_flags_init then
if type(c_flags_init) ~= 'table' then
error("unsupported type for c_flags_init: " .. type(c_flags_init))
return
end
for _, cval in pairs(c_flags_init) do
table.insert(all_cflags_init, cval)
end
end
if cxx_flags_init then
if type(cxx_flags_init) ~= 'table' then
error("unsupported type for cxx_flags_init: " .. type(cxx_flags_init))
return
end
for _, cval in pairs(cxx_flags_init) do
table.insert(all_cxxflags_init, cval)
end
end
-- convert to space-delimited str
local cflags_init_str = ''
if #all_cflags_init > 0 then
cflags_init_str = table.concat(all_cflags_init, " ")
end
local cxxflags_init_str = ''
if #all_cxxflags_init > 0 then
cxxflags_init_str = table.concat(all_cxxflags_init, " ")
end
-- write toolchain file
local toolchain_file_content = ''
if _OPTIONS["cmake-toolchain"] then
toolchain_file_content='include(' .. _OPTIONS["cmake-toolchain"] .. ')\n\n'
end
if #cflags_init_str > 0 then
toolchain_file_content = toolchain_file_content .. 'set(CMAKE_C_FLAGS_INIT "' .. cflags_init_str .. '" )\n'
end
if #cxxflags_init_str > 0 then
toolchain_file_content = toolchain_file_content .. 'set(CMAKE_CXX_FLAGS_INIT "' .. cxxflags_init_str .. '" )\n'
end
if string.match(_ACTION, 'vs.+') then -- because libssq doesn't care about CMAKE_C/XX_FLAGS_INIT
toolchain_file_content = toolchain_file_content .. 'set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /MT /D_MT" ) \n'
toolchain_file_content = toolchain_file_content .. 'set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MT /D_MT" ) \n'
end
if #toolchain_file_content > 0 then
local toolchain_file = path.join(dep_base, 'toolchain_' .. tostring(is_32) .. '_' .. _ACTION .. '_' .. os_iden .. '.precmt')
if not io.writefile(toolchain_file, toolchain_file_content) then
error("failed to write cmake toolchain")
return
end
cmd_gen = cmd_gen .. ' -DCMAKE_TOOLCHAIN_FILE="' .. toolchain_file .. '"'
end
-- add extra defs
if extra_cmd_defs then
if type(extra_cmd_defs) ~= 'table' then
error("unsupported type for extra_cmd_defs: " .. type(extra_cmd_defs))
return
end
if #extra_cmd_defs > 0 then
local extra_defs_str = ' -D' .. table.concat(extra_cmd_defs, ' -D')
cmd_gen = cmd_gen .. extra_defs_str
end
end
-- verbose generation
if _OPTIONS['verbose'] then
print(cmd_gen)
end
-- generate cmake config
local ok = os.execute(cmd_gen)
if not ok then
error("failed to generate")
return
end
-- verbose build
local verbose_build_str = ''
if _OPTIONS['verbose'] then
verbose_build_str = ' -v'
end
-- build with cmake
local parallel_str = ' --parallel'
if _OPTIONS['j'] then
parallel_str = parallel_str .. ' ' .. _OPTIONS['j']
end
local ok = os.execute(mycmake .. ' --build "' .. build_dir .. '" --config Release' .. parallel_str .. verbose_build_str)
if not ok then
error("failed to build")
return
end
-- create dir
if not os.mkdir(install_dir) then
error("failed to create install dir: " .. install_dir)
return
end
local cmd_install = mycmake.. ' --install "' .. build_dir .. '" --prefix "' .. install_dir .. '"'
print(cmd_install)
local ok = os.execute(cmd_install)
if not ok then
error("failed to install")
return
end
end
-- chmod tools
if os.host() == "linux" then
if not _OPTIONS["custom-extractor"] then
local ok_chmod, err_chmod = os.chmod(extractor, "777")
if not ok_chmod then
error("cannot chmod: " .. err_chmod)
return
end
end
if not _OPTIONS["custom-cmake"] then
local ok_chmod, err_chmod = os.chmod(mycmake, "777")
if not ok_chmod then
error("cannot chmod: " .. err_chmod)
return
end
end
end
-- extract action
-------
deps_to_extract = {} -- { 'path/to/archive', 'path/to/extraction folder'
if _OPTIONS["ext-ssq"] or _OPTIONS["all-ext"] then
table.insert(deps_to_extract, { 'libssq/libssq.tar.gz', 'libssq' })
end
if _OPTIONS["ext-zlib"] or _OPTIONS["all-ext"] then
table.insert(deps_to_extract, { 'zlib/zlib.tar.gz', 'zlib' })
end
if _OPTIONS["ext-curl"] or _OPTIONS["all-ext"] then
table.insert(deps_to_extract, { 'curl/curl.tar.gz', 'curl' })
end
if _OPTIONS["ext-protobuf"] or _OPTIONS["all-ext"] then
table.insert(deps_to_extract, { 'protobuf/protobuf.tar.gz', 'protobuf' })
end
if _OPTIONS["ext-mbedtls"] or _OPTIONS["all-ext"] then
table.insert(deps_to_extract, { 'mbedtls/mbedtls.tar.gz', 'mbedtls' })
end
if _OPTIONS["ext-ingame_overlay"] or _OPTIONS["all-ext"] then
table.insert(deps_to_extract, { 'ingame_overlay/ingame_overlay.tar.gz', 'ingame_overlay' })
end
-- start extraction
for _, dep in pairs(deps_to_extract) do
-- check archive
local archive_file = path.join(third_party_common_dir, dep[1])
print('\n\nextracting dep archive: "' .. archive_file .. '"')
if not os.isfile(archive_file) then
error("archive not found: " .. archive_file)
return
end
local out_folder = path.join(deps_dir, dep[2])
-- clean if required
if _OPTIONS["clean"] then
print('cleaning dir: ' .. out_folder)
os.rmdir(out_folder)
end
-- create out folder
print("creating dir: " .. out_folder)
local ok_mk, err_mk = os.mkdir(out_folder)
if not ok_mk then
error("Error: " .. err_mk)
return
end
-- extract
print("extracting: '" .. archive_file .. "'")
local ext = string.lower(string.sub(archive_file, -7)) -- ".tar.gz"
local ok_cmd = false
if ext == ".tar.gz" then
ok_cmd = os.execute(extractor .. ' -bso0 -bse2 x "' .. archive_file .. '" -so | "' .. extractor .. '" -bso0 -bse2 x -si -ttar -y -aoa -o"' .. deps_dir .. '"')
else
ok_cmd = os.execute(extractor .. ' -bso0 -bse2 x "' .. archive_file .. '" -y -aoa -o"' .. out_folder .. '"')
end
if not ok_cmd then
error('extraction failed')
end
-- flatten dir by moving all folders contents outside (one level above)
-- print('flattening dir: ' .. out_folder)
-- local folders = os.matchdirs(out_folder .. '/*')
-- for _, inner_folder in pairs(folders) do
-- -- the weird "/*" at the end is not a mistake, premake uses cp cpmmand on linux, which won't copy inner dir otherwise
-- local ok = os.execute('{COPYDIR} "' .. inner_folder .. '"/* "' .. out_folder .. '"')
-- if not ok then
-- error('copy dir failed, src=' .. inner_folder .. ', dest=' .. out_folder)
-- end
-- os.rmdir(inner_folder)
-- end
end
-- build action
-------
if _OPTIONS["build-ssq"] or _OPTIONS["all-build"] then
if _OPTIONS["32-build"] then
cmake_build('libssq', true)
end
if _OPTIONS["64-build"] then
cmake_build('libssq', false)
end
end
if _OPTIONS["build-zlib"] or _OPTIONS["all-build"] then
if _OPTIONS["32-build"] then
cmake_build('zlib', true)
end
if _OPTIONS["64-build"] then
cmake_build('zlib', false)
end
end
-- ############## zlib is painful ##############
-- lib curl uses the default search paths, even when ZLIB_INCLUDE_DIR and ZLIB_LIBRARY_RELEASE are defined
-- check thir CMakeLists.txt line #573
-- optional_dependency(ZLIB)
-- if(ZLIB_FOUND)
-- set(HAVE_LIBZ ON)
-- set(USE_ZLIB ON)
--
-- # Depend on ZLIB via imported targets if supported by the running
-- # version of CMake. This allows our dependents to get our dependencies
-- # transitively.
-- if(NOT CMAKE_VERSION VERSION_LESS 3.4)
-- list(APPEND CURL_LIBS ZLIB::ZLIB) <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< evil
-- else()
-- list(APPEND CURL_LIBS ${ZLIB_LIBRARIES})
-- include_directories(${ZLIB_INCLUDE_DIRS})
-- endif()
-- list(APPEND CMAKE_REQUIRED_INCLUDES ${ZLIB_INCLUDE_DIRS})
-- endif()
-- we have to set the ZLIB_ROOT so that it is prepended to the search list
-- we have to set ZLIB_LIBRARY NOT ZLIB_LIBRARY_RELEASE in order to override the FindZlib module
-- we also should set ZLIB_USE_STATIC_LIBS since we want to force static builds
-- https://github.com/Kitware/CMake/blob/a6853135f569f0b040a34374a15a8361bb73901b/Modules/FindZLIB.cmake#L98C4-L98C13
local zlib_name = ''
local mbedtls_name = ''
local mbedcrypto_name = ''
local mbedx509_name = ''
-- name
if _ACTION and os.target() == 'windows' then
if string.match(_ACTION, 'vs.+') then
zlib_name = 'zlibstatic'
mbedtls_name = 'mbedtls'
mbedcrypto_name = 'mbedcrypto'
mbedx509_name = 'mbedx509'
elseif string.match(_ACTION, 'gmake.*') then
zlib_name = 'libzlibstatic'
mbedtls_name = 'libmbedtls'
mbedcrypto_name = 'libmbedcrypto'
mbedx509_name = 'libmbedx509'
else
error('unsupported os/action: ' .. os.target() .. ' / ' .. _ACTION)
end
else -- linux or macos
zlib_name = 'libz'
mbedtls_name = 'libmbedtls'
mbedcrypto_name = 'libmbedcrypto'
mbedx509_name = 'mbedx509'
end
-- extension
if _ACTION and string.match(_ACTION, 'vs.+') then
zlib_name = zlib_name .. '.lib'
mbedtls_name = mbedtls_name .. '.lib'
mbedcrypto_name = mbedcrypto_name .. '.lib'
mbedx509_name = mbedx509_name .. '.lib'
else
zlib_name = zlib_name .. '.a'
mbedtls_name = mbedtls_name .. '.a'
mbedcrypto_name = mbedcrypto_name .. '.a'
mbedx509_name = mbedx509_name .. '.a'
end
local wild_zlib_path_32 = path.join(deps_dir, 'zlib', 'install32', 'lib', zlib_name)
local wild_zlib_32 = {
'ZLIB_USE_STATIC_LIBS=ON',
'ZLIB_ROOT="' .. path.join(deps_dir, 'zlib', 'install32') .. '"',
'ZLIB_INCLUDE_DIR="' .. path.join(deps_dir, 'zlib', 'install32', 'include') .. '"',
'ZLIB_LIBRARY="' .. wild_zlib_path_32 .. '"',
}
local wild_zlib_path_64 = path.join(deps_dir, 'zlib', 'install64', 'lib', zlib_name)
local wild_zlib_64 = {
'ZLIB_USE_STATIC_LIBS=ON',
'ZLIB_ROOT="' .. path.join(deps_dir, 'zlib', 'install64') .. '"',
'ZLIB_INCLUDE_DIR="' .. path.join(deps_dir, 'zlib', 'install64', 'include') .. '"',
'ZLIB_LIBRARY="' .. wild_zlib_path_64 .. '"',
}
if _OPTIONS["build-mbedtls"] or _OPTIONS["all-build"] then
local mbedtls_common_defs = {
"USE_STATIC_MBEDTLS_LIBRARY=ON",
"USE_SHARED_MBEDTLS_LIBRARY=OFF",
"ENABLE_TESTING=OFF",
"ENABLE_PROGRAMS=OFF",
"MBEDTLS_FATAL_WARNINGS=OFF",
}
if os.target() == 'windows' and string.match(_ACTION, 'vs.+') then
table.insert(mbedtls_common_defs, "MSVC_STATIC_RUNTIME=ON")
else -- linux or macos or MinGW on Windows
table.insert(mbedtls_common_defs, "LINK_WITH_PTHREAD=ON")
end
local mbedtls_32_bit_fixes = {}
if _OPTIONS["32-build"] and string.match(_ACTION, 'gmake.*') then
table.insert(mbedtls_32_bit_fixes, '-mpclmul')
table.insert(mbedtls_32_bit_fixes, '-msse2')
table.insert(mbedtls_32_bit_fixes, '-maes')
end
if _OPTIONS["32-build"] then
cmake_build('mbedtls', true, mbedtls_common_defs, mbedtls_32_bit_fixes)
end
if _OPTIONS["64-build"] then
cmake_build('mbedtls', false, mbedtls_common_defs)
end
end
if _OPTIONS["build-curl"] or _OPTIONS["all-build"] then
local curl_common_defs = {
"BUILD_CURL_EXE=OFF",
"BUILD_STATIC_CURL=OFF", -- "Build curl executable with static libcurl"
"BUILD_SHARED_LIBS=OFF",
"BUILD_STATIC_LIBS=ON",
"BUILD_MISC_DOCS=OFF",
"BUILD_TESTING=OFF",
"BUILD_LIBCURL_DOCS=OFF",
"ENABLE_CURL_MANUAL=OFF",
"CURL_USE_OPENSSL=OFF",
"CURL_ZLIB=ON",
"CURL_USE_MBEDTLS=ON",
-- "CURL_USE_SCHANNEL=ON",
"CURL_CA_FALLBACK=ON",
-- fix building on Arch Linux
"CURL_USE_LIBSSH2=OFF",
"CURL_USE_LIBPSL=OFF",
"USE_LIBIDN2=OFF",
"CURL_DISABLE_LDAP=ON",
"USE_NGHTTP2=OFF",
}
if os.target() == 'windows' and string.match(_ACTION, 'vs.+') then
table.insert(curl_common_defs, "CURL_STATIC_CRT=ON")
table.insert(curl_common_defs, "ENABLE_UNICODE=ON")
end
if _OPTIONS["32-build"] then
cmake_build('curl', true, merge_list(curl_common_defs, merge_list(wild_zlib_32, {
'MBEDTLS_INCLUDE_DIRS="' .. path.join(deps_dir, 'mbedtls', 'install32', 'include') .. '"',
'MBEDTLS_LIBRARY="' .. path.join(deps_dir, 'mbedtls', 'install32', 'lib', mbedtls_name) .. '"',
'MBEDCRYPTO_LIBRARY="' .. path.join(deps_dir, 'mbedtls', 'install32', 'lib', mbedcrypto_name) .. '"',
'MBEDX509_LIBRARY="' .. path.join(deps_dir, 'mbedtls', 'install32', 'lib', mbedx509_name) .. '"',
})))
end
if _OPTIONS["64-build"] then
cmake_build('curl', false, merge_list(curl_common_defs, merge_list(wild_zlib_64, {
'MBEDTLS_INCLUDE_DIRS="' .. path.join(deps_dir, 'mbedtls', 'install64', 'include') .. '"',
'MBEDTLS_LIBRARY="' .. path.join(deps_dir, 'mbedtls', 'install64', 'lib', mbedtls_name) .. '"',
'MBEDCRYPTO_LIBRARY="' .. path.join(deps_dir, 'mbedtls', 'install64', 'lib', mbedcrypto_name) .. '"',
'MBEDX509_LIBRARY="' .. path.join(deps_dir, 'mbedtls', 'install64', 'lib', mbedx509_name) .. '"',
})))
end
end
if _OPTIONS["build-protobuf"] or _OPTIONS["all-build"] then
local proto_common_defs = {
"ABSL_PROPAGATE_CXX_STD=ON",
"protobuf_BUILD_PROTOBUF_BINARIES=ON",
"protobuf_BUILD_PROTOC_BINARIES=ON",
"protobuf_BUILD_LIBPROTOC=OFF",
"protobuf_BUILD_LIBUPB=OFF",
"protobuf_BUILD_TESTS=OFF",
"protobuf_BUILD_EXAMPLES=OFF",
"protobuf_DISABLE_RTTI=ON",
"protobuf_BUILD_CONFORMANCE=OFF",
"protobuf_BUILD_SHARED_LIBS=OFF",
"protobuf_WITH_ZLIB=ON",
}
if os.target() == 'windows' and string.match(_ACTION, 'gmake.*') then
table.insert(proto_common_defs, 'protobuf_MSVC_STATIC_RUNTIME=ON')
end
if _OPTIONS["32-build"] then
cmake_build('protobuf', true, merge_list(proto_common_defs, wild_zlib_32))
end
if _OPTIONS["64-build"] then
cmake_build('protobuf', false, merge_list(proto_common_defs, wild_zlib_64))
end
end
if _OPTIONS["build-ingame_overlay"] or _OPTIONS["all-build"] then
-- fixes 32-bit compilation of DX12
local overaly_imgui_cfg_file = path.join(deps_dir, 'ingame_overlay', 'imconfig.imcfg')
if not io.writefile(overaly_imgui_cfg_file, [[
#pragma once
#define ImTextureID ImU64
]]) then
error('failed to create ImGui config file for overlay: ' .. overaly_imgui_cfg_file)
end
local ingame_overlay_common_defs = {
'IMGUI_USER_CONFIG="' .. overaly_imgui_cfg_file:gsub('\\', '/') .. '"', -- ensure we use '/' because this lib doesn't handle it well
'INGAMEOVERLAY_USE_SYSTEM_LIBRARIES=OFF',
'INGAMEOVERLAY_USE_SPDLOG=OFF',
'INGAMEOVERLAY_BUILD_TESTS=OFF',
'INGAMEOVERLAY_DYNAMIC_RUNTIME=OFF',
--'USE_MSVC_RUNTIME_LIBRARY_DLL=OFF', -- Should we?
}
-- fix missing standard include/header file for gcc/clang
local ingame_overlay_fixes = {}
if string.match(_ACTION, 'gmake.*') then
-- MinGW fixes
if os.target() == 'windows' then
-- MinGW doesn't define _M_AMD64 or _M_IX86, which makes SystemDetector.h fail to recognize os
-- MinGW throws this error: Filesystem.cpp:139:38: error: no matching function for call to 'stat::stat(const char*, stat*)
table.insert(ingame_overlay_fixes, '-include sys/stat.h')
-- MinGW throws this error: Library.cpp:77:26: error: invalid conversion from 'FARPROC' {aka 'long long int (*)()'} to 'void*' [-fpermissive]
table.insert(ingame_overlay_fixes, '-fpermissive')
end
end
if _OPTIONS["32-build"] then
cmake_build('ingame_overlay/deps/System', true, {
'SYSTEM_BUILD_TESTS=OFF',
'SYSTEM_DYNAMIC_RUNTIME=OFF',
}, nil, ingame_overlay_fixes)
cmake_build('ingame_overlay/deps/mini_detour', true, {
'MINIDETOUR_BUILD_TESTS=OFF',
'MINIDETOUR_DYNAMIC_RUNTIME=OFF',
})
cmake_build('ingame_overlay', true, ingame_overlay_common_defs, nil, ingame_overlay_fixes)
end
if _OPTIONS["64-build"] then
cmake_build('ingame_overlay/deps/System', false, {
'SYSTEM_BUILD_TESTS=OFF',
'SYSTEM_DYNAMIC_RUNTIME=OFF',
}, nil, ingame_overlay_fixes)
cmake_build('ingame_overlay/deps/mini_detour', false, {
'MINIDETOUR_BUILD_TESTS=OFF',
'MINIDETOUR_DYNAMIC_RUNTIME=OFF',
})
cmake_build('ingame_overlay', false, ingame_overlay_common_defs, nil, ingame_overlay_fixes)
end
end