forked from sumatrapdfreader/sumatrapdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
premake5.lua
705 lines (596 loc) · 23 KB
/
premake5.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
--[[
To generate Visual Studio files (in vs2017/ directory), run:
scripts\premake-regenerate-vs-projects.ps1
I'm using premake5 alpha12 from http://premake.github.io/download.html#v5
Note about nasm: when providing "-I foo/bar/" flag to nasm.exe, it must be
"foo/bar/" and not just "foo/bar".
Notes about asan in msvc: https://devblogs.microsoft.com/cppblog/addresssanitizer-asan-for-windows-with-msvc/
Reference for warnings:
4018 - signed/unsigned mismatch
4057 - function X differs in indirection to slightly different base types
4090 - different 'const' qualifiers
4091 - 'typedef ': ignored on left of 'tagGPFIDL_FLAGS' when no variable is declared
4100 - unreferenced formal parameter
4127 - conditional expression is constant
4131 - uses old-style declarator
4189 - local variable is initialized but not referenced, defer macro triggers this
4204 - non-standard extension: non-constant aggregate initializer
4206 - non-standard extension: translation unit is empty
4244 - 64bit, conversion with possible loss of data
4245 - sign/unsigned mismatch
4267 - 64bit, conversion with possible loss of data
4302 - 64bit, type cast truncation
4305 - 'initializing': truncation from 'double' to 'float'
4310 - 64bit, cast truncates constant value
4311 - 64bit, type cast pointer truncation
4312 - 64bit, conversion to X of greater size
4324 - 64bit, structure was padded
4458 - declaraion of X hides class member
4522 - multiple assignment operators specified
4530 - exception mismatch
4611 - interaction between '_setjmp' and C++ object destruction is non-portable
4702 - unreachable code
4706 - assignment within conditional expression
4800 - forcing value to bool (performance warning)
4819 - The file contains a character that cannot be represented in the current code page
4838 - conversion from X to Y requires a narrowing conversion
4996 - POSIX name deprecated
Linker warning
4221 - This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
Prefast:
28125 - function X must be called in try/except (InitializeCriticalSection)
28252 - Inconsistent annotaion
28253 - Inconsistent annotaion
--]]
include("premake5.files.lua")
workspace "SumatraPDF"
configurations { "Debug", "Release", "ReleaseAnalyze", }
platforms { "x32", "x32_asan", "x64", "x64_ramicro" }
startproject "SumatraPDF"
filter "platforms:x32"
architecture "x86"
filter {}
filter "platforms:x32_asan"
architecture "x86"
buildoptions { "/fsanitize=address"}
defines { "ASAN_BUILD=1" }
defines { "RAMICRO"}
disablewarnings { "4731" }
filter {}
filter "platforms:x64"
architecture "x86_64"
-- strangely this is not set by default for rc.exe
resdefines { "_WIN64" }
filter {}
filter "platforms:x64_ramicro"
architecture "x86_64"
-- strangely this is not set by default for rc.exe
resdefines { "_WIN64", "RAMICRO" }
defines { "RAMICRO"}
filter {}
disablewarnings { "4127", "4189", "4324", "4458", "4522", "4611", "4702", "4800", "6319" }
warnings "Extra"
location "this_is_invalid_location"
filter "action:vs2019"
location "vs2019"
filter {}
filter "action:gmake"
location "gmake"
filter {}
filter {"platforms:x32", "configurations:Release"}
targetdir "out/rel32"
filter {"platforms:x32", "configurations:ReleaseAnalyze"}
targetdir "out/rel32_prefast"
filter {"platforms:x32", "configurations:Debug"}
targetdir "out/dbg32"
filter {}
filter {"platforms:x32_asan", "configurations:Release"}
targetdir "out/rel32_asan"
filter {"platforms:x32_asan", "configurations:ReleaseAnalyze"}
targetdir "out/rel32_prefast_asan"
filter {"platforms:x32_asan", "configurations:Debug"}
targetdir "out/dbg32_asan"
filter {}
filter {"platforms:x64", "configurations:Release"}
targetdir "out/rel64"
filter {"platforms:x64", "configurations:ReleaseAnalyze"}
targetdir "out/rel64_prefast"
filter {"platforms:x64", "configurations:Debug"}
targetdir "out/dbg64"
filter {}
filter {"platforms:x64_ramicro", "configurations:Release"}
targetdir "out/rel64ra"
filter {"platforms:x64_ramicro", "configurations:ReleaseAnalyze"}
targetdir "out/rel64ra_prefast"
filter {"platforms:x64_ramicro", "configurations:Debug"}
targetdir "out/dbg64ra"
filter {}
objdir "%{cfg.targetdir}/obj"
-- https://github.com/premake/premake-core/wiki/symbols
-- https://blogs.msdn.microsoft.com/vcblog/2016/10/05/faster-c-build-cycle-in-vs-15-with-debugfastlink/
symbols "FastLink"
filter {"configurations:Release"}
symbols "Full"
filter {}
staticruntime "On"
-- https://github.com/premake/premake-core/wiki/flags
flags {
"MultiProcessorCompile",
"Maps", -- generate map file
-- "Unicode", TODO: breaks libdjuv?
}
filter {"configurations:not ReleaseAnalyze"}
flags { "FatalCompileWarnings" }
filter {}
exceptionhandling "Off"
rtti "Off"
defines {
"WIN32",
"_WIN32",
"_CRT_SECURE_NO_WARNINGS",
-- https://docs.microsoft.com/en-us/cpp/porting/modifying-winver-and-win32-winnt?view=vs-2019
"WINVER=0x0605", -- latest Windows SDK
"_WIN32_WINNT=0x0603"
}
filter "configurations:Debug"
defines { "DEBUG" }
filter {}
filter "configurations:Release*"
defines { "NDEBUG" }
flags {
"LinkTimeOptimization",
}
optimize "On"
filter {}
include("premake5.opt.lua")
project "zlib"
kind "StaticLib"
language "C"
disablewarnings { "4131", "4244", "4245", "4267", "4996" }
zlib_files()
project "unrar"
kind "StaticLib"
language "C++"
defines { "UNRAR", "RARDLL", "SILENT" }
disablewarnings { "4100", "4201", "4211", "4244", "4389", "4456", "4459", "4701", "4702", "4706", "4709", "4996" }
-- unrar uses exception handling in savepos.hpp but I don't want to enable it
-- as it seems to infect the Sumatra binary as well (i.e. I see bad alloc exception
-- being thrown)
-- exceptionhandling "On"
disablewarnings { "4530" } -- warning about using C++ exception handler without exceptions enabled
includedirs { "ext/unrar" }
unrar_files()
project "libdjvu"
kind "StaticLib"
characterset ("MBCS")
language "C++"
defines { "NEED_JPEG_DECODER", "WINTHREADS=1", "DDJVUAPI=/**/", "MINILISPAPI=/**/", "DEBUGLVL=0" }
filter {"platforms:x32_asan"}
defines { "DISABLE_MMX" }
filter{}
disablewarnings { "4100", "4189", "4244", "4267", "4302", "4311", "4312", "4505"}
disablewarnings { "4456", "4457", "4459", "4530", "4701", "4702", "4703", "4706" }
includedirs { "ext/libjpeg-turbo" }
libdjvu_files()
project "wdl"
kind "StaticLib"
language "C++"
includedirs { "ext/WDL" }
disablewarnings { "4018", "4100", "4244", "4505", "4456", "4457", "4245", "4701", "4706", "4996" }
characterset "MBCS"
wdl_files()
project "unarrlib"
kind "StaticLib"
language "C"
-- TODO: for bzip2, need BZ_NO_STDIO and BZ_DEBUG=0
-- TODO: for lzma, need _7ZIP_PPMD_SUPPPORT
defines { "HAVE_ZLIB", "HAVE_BZIP2", "HAVE_7Z", "BZ_NO_STDIO", "_7ZIP_PPMD_SUPPPORT" }
-- TODO: most of these warnings are due to bzip2 and lzma
disablewarnings { "4100", "4244", "4267", "4456", "4457", "4996" }
includedirs { "ext/zlib", "ext/bzip2", "ext/lzma/C" }
unarr_files()
project "jbig2dec"
kind "StaticLib"
language "C"
defines { "HAVE_STRING_H=1", "JBIG_NO_MEMENTO" }
disablewarnings { "4018", "4100", "4146", "4244", "4267", "4456", "4701" }
includedirs { "ext/jbig2dec" }
jbig2dec_files()
project "openjpeg"
kind "StaticLib"
language "C"
disablewarnings { "4100", "4244", "4310" }
-- openjpeg has opj_config_private.h for such over-rides
-- but we can't change it because we bring openjpeg as submodule
-- and we can't provide our own in a different directory because
-- msvc will include the one in ext/openjpeg/src/lib/openjp2 first
-- because #include "opj_config_private.h" searches current directory first
defines { "USE_JPIP", "OPJ_STATIC", "OPJ_EXPORTS" }
openjpeg_files()
project "libwebp"
kind "StaticLib"
language "C"
disablewarnings { "4204", "4244", "4057", "4245", "4310" }
includedirs { "ext/libwebp" }
libwebp_files()
project "libjpeg-turbo"
kind "StaticLib"
language "C"
disablewarnings { "4018", "4100", "4244", "4245" }
includedirs { "ext/libjpeg-turbo", "ext/libjpeg-turbo/simd" }
-- nasm.exe -I .\ext\libjpeg-turbo\simd\
-- -I .\ext\libjpeg-turbo\win\ -f win32
-- -o .\obj-rel\jpegturbo\jsimdcpu.obj
-- .\ext\libjpeg-turbo\simd\jsimdcpu.asm
filter {'files:**.asm', 'platforms:x32 or x32_asan'}
buildmessage '%{file.relpath}'
buildoutputs { '%{cfg.objdir}/%{file.basename}.obj' }
buildcommands {
'..\\bin\\nasm.exe -f win32 -I ../ext/libjpeg-turbo/simd/ -I ../ext/libjpeg-turbo/win/ -o "%{cfg.objdir}/%{file.basename}.obj" "%{file.relpath}"'
}
filter {}
filter {'files:**.asm', 'platforms:x64 or x64_ramicro'}
buildmessage '%{file.relpath}'
buildoutputs { '%{cfg.objdir}/%{file.basename}.obj' }
buildcommands {
'..\\bin\\nasm.exe -f win64 -D__x86_64__ -DWIN64 -DMSVC -I ../ext/libjpeg-turbo/simd/ -I ../ext/libjpeg-turbo/win/ -o "%{cfg.objdir}/%{file.basename}.obj" "%{file.relpath}"'
}
filter {}
libjpeg_turbo_files()
project "freetype"
kind "StaticLib"
language "C"
defines {
"FT2_BUILD_LIBRARY",
"FT_CONFIG_MODULES_H=\"slimftmodules.h\"",
"FT_CONFIG_OPTIONS_H=\"slimftoptions.h\"",
}
disablewarnings { "4018", "4244", "4267", "4312", "4996" }
includedirs { "ext/freetype/include", "ext/freetype-config" }
freetype_files()
project "lcms2"
kind "StaticLib"
language "C"
includedirs { "ext/lcms2/include" }
lcms2_files()
project "harfbuzz"
kind "StaticLib"
language "C"
includedirs { "ext/harfbuzz/src/hb-ucdn", "ext/freetype-config", "ext/freetype/include" }
defines {
"HAVE_FALLBACK=1",
"HAVE_OT",
"HAVE_UCDN",
"HAVE_FREETYPE",
"HB_NO_MT",
"hb_malloc_impl=fz_hb_malloc",
"hb_calloc_impl=fz_hb_calloc",
"hb_realloc_impl=fz_hb_realloc",
"hb_free_impl=fz_hb_free"
}
disablewarnings { "4100", "4146", "4244", "4245", "4267", "4456", "4457", "4459", "4701", "4702", "4706" }
harfbuzz_files()
project "mujs"
kind "StaticLib"
language "C"
includedirs { "ext/mujs" }
disablewarnings { "4090", "4100", "4702", "4706" }
files { "ext/mujs/one.c", "ext/mujs/mujs.h" }
project "chm"
kind "StaticLib"
language "C"
defines { "UNICODE", "_UNICODE", "PPC_BSTR"}
disablewarnings { "4018", "4057", "4189", "4244", "4267", "4295", "4701", "4706", "4996" }
files { "ext/CHMLib/src/chm_lib.c", "ext/CHMLib/src/lzx.c" }
project "engines"
kind "StaticLib"
language "C++"
cppdialect "C++latest"
disablewarnings {
"4018", "4057", "4100", "4189", "4244", "4267", "4295", "4457",
"4701", "4706", "4819", "4838"
}
includedirs { "src", "src/wingui" }
includedirs { "ext/synctex", "ext/libdjvu", "ext/CHMLib/src", "ext/zlib", "mupdf/include" }
engines_files()
links { "chm" }
project "mupdf"
kind "StaticLib"
language "C"
-- for openjpeg, OPJ_STATIC is alrady defined in load-jpx.c
-- so we can't double-define it
defines { "USE_JPIP", "OPJ_EXPORTS", "HAVE_LCMS2MT=1" }
defines { "OPJ_STATIC", "SHARE_JPEG" }
-- this defines which fonts are to be excluded from being included directly
-- we exclude the very big cjk fonts
defines { "TOFU", "TOFU_CJK_LANG" }
disablewarnings {
"4005", "4018", "4028", "4100", "4115", "4130", "4204", "4206", "4244",
"4245", "4267", "4295", "4305", "4389", "4456", "4457", "4459",
"4702", "4703", "4706",
}
-- force including mupdf/scripts/openjpeg/opj_config_private.h
-- with our build over-rides
includedirs {
"ext/freetype-config", -- TODO: mupdf/scripts/freetype
"mupdf/include",
"mupdf/generated",
"ext/jbig2dec",
"ext/libjpeg-turbo",
"ext/openjpeg/src/lib/openjp2",
"ext/zlib",
"ext/freetype/include",
"ext/mujs",
"ext/harfbuzz/src",
"ext/lcms2/include",
}
-- .\ext\..\bin\nasm.exe -I .\mupdf\ -f win32 -o .\obj-rel\mupdf\font_base14.obj
-- .\mupdf\font_base14.asm
filter {'files:**.asm', 'platforms:x32 or x32_asan'}
buildmessage 'Compiling %{file.relpath}'
buildoutputs { '%{cfg.objdir}/%{file.basename}.obj' }
buildcommands {
'..\\bin\\nasm.exe -f win32 -I ../mupdf/ -o "%{cfg.objdir}/%{file.basename}.obj" "%{file.relpath}"'
}
filter {}
filter {'files:**.asm', 'platforms:x64 or x64_ramicro'}
buildmessage 'Compiling %{file.relpath}'
buildoutputs { '%{cfg.objdir}/%{file.basename}.obj' }
buildcommands {
'..\\bin\\nasm.exe -f win64 -DWIN64 -I ../mupdf/ -o "%{cfg.objdir}/%{file.basename}.obj" "%{file.relpath}"'
}
filter {}
mupdf_files()
links { "zlib", "freetype", "libjpeg-turbo", "jbig2dec", "openjpeg", "lcms2", "harfbuzz", "mujs" }
-- regular build with distinct debug / release builds
project "libmupdf-reg"
kind "SharedLib"
language "C"
disablewarnings { "4206", "4702" }
defines { "FZ_ENABLE_SVG" }
-- premake has logic in vs2010_vcxproj.lua that only sets PlatformToolset
-- if there is a c/c++ file, so we add a no-op cpp file to force This logic
files { "src/libmupdf.rc", "src/no_op_for_premake.cpp" }
implibname "libmupdf"
-- TODO: is thre a better way to do it?
-- TODO: only for windows
linkoptions { "/DEF:..\\src\\libmupdf.def", "-IGNORE:4702" }
links { "mupdf", "libdjvu", "libwebp", "unarrlib" }
links {
"advapi32", "kernel32", "user32", "gdi32", "comdlg32",
"shell32", "windowscodecs", "comctl32", "msimg32",
"winspool", "wininet", "urlmon", "gdiplus", "ole32",
"oleAut32", "shlwapi", "version", "crypt32"
}
-- should be called libmupdf-opt but we don't want that .dll name
project "libmupdf"
kind "SharedLib"
language "C"
disablewarnings { "4206", "4702" }
optimize "On"
undefines { "DEBUG" }
defines { "NDEBUG" }
defines { "FZ_ENABLE_SVG" }
-- premake has logic in vs2010_vcxproj.lua that only sets PlatformToolset
-- if there is a c/c++ file, so we add a no-op cpp file to force This logic
files { "src/libmupdf.rc", "src/no_op_for_premake.cpp" }
implibname "libmupdf"
-- TODO: is there a better way to do it?
-- TODO: only for windows
linkoptions { "/DEF:..\\src\\libmupdf.def", "-IGNORE:4702" }
links { "mupdf-opt", "libdjvu-opt", "unarrlib-opt", "libwebp-opt" }
links {
"advapi32", "kernel32", "user32", "gdi32", "comdlg32",
"shell32", "windowscodecs", "comctl32", "msimg32",
"winspool", "wininet", "urlmon", "gdiplus", "ole32",
"oleAut32", "shlwapi", "version", "crypt32"
}
project "utils"
kind "StaticLib"
language "C++"
cppdialect "C++latest"
filter "configurations:ReleaseAnalyze"
-- TODO: somehow /analyze- is default which creates warning about
-- over-ride from cl.exe. Don't know how to disable the warning
buildoptions { "/analyze" }
disablewarnings { "28125", "28252", "28253" }
filter {}
-- QITABENT in shlwapi.h has incorrect definition and causes 4838
disablewarnings { "4100", "4267", "4457", "4838" }
includedirs { "src", "ext/zlib", "ext/lzma/C" }
includedirs { "ext/libwebp/src", "ext/unarr", "mupdf/include" }
utils_files()
---- executables
--[[
project "efi"
kind "ConsoleApp"
language "C++"
cppdialect "C++latest"
disablewarnings { "4091", "4577" }
includedirs { "src" }
efi_files()
project "mutool"
kind "ConsoleApp"
language "C"
disablewarnings { "4100", "4267" }
includedirs { "ext/zlib", "ext/lzma/C", "ext/unarr", "mupdf/include" }
mutool_files()
links { "mupdf" }
links { "windowscodecs" }
entrypoint "wmainCRTStartup"
project "mudraw"
kind "ConsoleApp"
language "C"
disablewarnings { "4100", "4267" }
includedirs { "ext/zlib", "ext/lzma/C", "ext/unarr", "mupdf/include" }
mudraw_files()
links { "mupdf" }
links { "windowscodecs" }
linkoptions { "/ENTRY:\"wmainCRTStartup\"" }
entrypoint "wmainCRTStartup"
project "unarr"
kind "ConsoleApp"
language "C"
disablewarnings { "4100" }
files { "ext/unarr/main.c" }
links { "unarrlib", "zlib" }
project "signfile"
kind "ConsoleApp"
language "C++"
cppdialect "C++latest"
includedirs { "src", "mupdf/include"}
files { "src/tools/signfile.cpp" }
links { "utils", "mupdf" }
links { "crypt32", "shlwapi" }
--]]
project "enginedump"
kind "ConsoleApp"
language "C++"
cppdialect "C++latest"
includedirs { "src", "src/wingui", "mupdf/include" }
disablewarnings { "4100", "4267", "4457" }
engine_dump_files()
links { "engines", "utils", "unrar", "mupdf", "unarrlib", "libwebp", "libdjvu" }
links {
"comctl32", "gdiplus", "msimg32", "shlwapi",
"version", "windowscodecs"
}
project "test_util"
kind "ConsoleApp"
language "C++"
cppdialect "C++latest"
disablewarnings { "4838" }
defines { "NO_LIBMUPDF" }
includedirs { "src" }
test_util_files()
links { "gdiplus", "comctl32", "shlwapi", "Version" }
project "plugin-test"
kind "WindowedApp"
language "C++"
cppdialect "C++latest"
entrypoint "WinMainCRTStartup"
includedirs { "src" }
files { "src/tools/plugin-test.cpp" }
links { "utils", "mupdf" }
links { "shlwapi", "version", "comctl32" }
project "MakeLZSA"
kind "ConsoleApp"
language "C++"
cppdialect "C++latest"
makelzsa_files()
includedirs { "src", "ext/zlib", "ext/lzma/C", "ext/unarr" }
links { "unarrlib", "zlib" }
links { "shlwapi", "version", "comctl32" }
project "PdfFilter"
kind "SharedLib"
language "C++"
cppdialect "C++latest"
disablewarnings { "4100", "4838" }
filter {"configurations:Debug"}
defines { "BUILD_TEX_IFILTER", "BUILD_EPUB_IFILTER" }
filter {}
includedirs { "src", "src/wingui", "mupdf/include" }
pdf_filter_files()
links { "utils", "unrar", "libmupdf" }
links { "comctl32", "gdiplus", "shlwapi", "version" }
project "PdfPreview"
kind "SharedLib"
language "C++"
cppdialect "C++latest"
disablewarnings { "4100", "4838" }
includedirs {
"src", "src/wingui", "mupdf/include",
"ext/libdjvu", "ext/CHMLib/src", "ext/zlib"
}
pdf_preview_files()
filter {"configurations:Debug"}
defines {
"BUILD_XPS_PREVIEW", "BUILD_DJVU_PREVIEW", "BUILD_EPUB_PREVIEW",
"BUILD_FB2_PREVIEW", "BUILD_MOBI_PREVIEW", "BUILD_CBZ_PREVIEW",
"BUILD_CBR_PREVIEW", "BUILD_CB7_PREVIEW", "BUILD_CBT_PREVIEW",
"BUILD_TGA_PREVIEW"
}
filter {}
-- TODO: "chm" should only be for Debug config but doing links { "chm" }
-- in the filter breaks linking by setting LinkLibraryDependencies to false
links { "utils", "unrar", "libmupdf", "chm" }
links { "comctl32", "gdiplus", "msimg32", "shlwapi", "version" }
-- a single static executable
project "SumatraPDF"
kind "WindowedApp"
language "C++"
cppdialect "C++latest"
entrypoint "WinMainCRTStartup"
flags { "NoManifest" }
includedirs { "src", "mupdf/include", "ext/WDL" }
synctex_files()
mui_files()
uia_files()
sumatrapdf_files()
filter "configurations:ReleaseAnalyze"
-- TODO: somehow /analyze- is default which creates warning about
-- over-ride from cl.exe. Don't know how to disable the warning
buildoptions { "/analyze" }
disablewarnings { "28125", "28252", "28253" }
filter {}
-- for synctex
disablewarnings { "4100", "4244", "4267", "4702", "4706" }
includedirs { "ext/zlib", "ext/synctex" }
-- for uia
disablewarnings { "4302", "4311", "4838" }
links {
"engines", "libdjvu", "libwebp", "mupdf", "unarrlib", "utils", "unrar", "wdl"
}
links {
"comctl32", "delayimp", "gdiplus", "msimg32", "shlwapi", "urlmon",
"version", "windowscodecs", "wininet", "uiautomationcore.lib"
}
filter "platforms:x32_asan"
-- asan-i386.lib
-- clang_rt.asan-i386.lib
links { "clang_rt.asan-i386.lib" }
-- linkoptions { "/WHOLEARCHIVE:asan-i386.lib"}
filter {}
-- this is to prevent dll hijacking
linkoptions { "/DELAYLOAD:gdiplus.dll /DELAYLOAD:msimg32.dll /DELAYLOAD:shlwapi.dll" }
linkoptions { "/DELAYLOAD:urlmon.dll /DELAYLOAD:version.dll /DELAYLOAD:wininet.dll" }
linkoptions { "/DELAYLOAD:uiautomationcore.dll" }
-- a dll version where most functionality is in libmupdf.dll
project "SumatraPDF-dll"
kind "WindowedApp"
language "C++"
cppdialect "C++latest"
entrypoint "WinMainCRTStartup"
flags { "NoManifest" }
includedirs { "src", "mupdf/include", "ext/WDL" }
synctex_files()
mui_files()
uia_files()
sumatrapdf_files()
filter "configurations:ReleaseAnalyze"
-- TODO: somehow /analyze- is default which creates warning about
-- over-ride from cl.exe. Don't know how to disable the warning
buildoptions { "/analyze" }
disablewarnings { "28125", "28252", "28253" }
filter {}
-- for synctex
disablewarnings { "4100", "4244", "4267", "4702", "4706" }
includedirs { "ext/zlib", "ext/synctex" }
-- for uia
disablewarnings { "4302", "4311", "4838" }
resdefines { "INSTALL_PAYLOAD_ZIP=.\\%{cfg.targetdir}\\InstallerData.dat" }
files { "src/MuPDF_Exports.cpp" }
links {
"libmupdf", "unrar", "unarrlib", "utils", "engines", "wdl"
}
links {
"comctl32", "delayimp", "gdiplus", "msimg32", "shlwapi", "urlmon",
"version", "wininet", "d2d1.lib", "uiautomationcore.lib"
}
-- this is to prevent dll hijacking
linkoptions { "/DELAYLOAD:libmupdf.dll" }
linkoptions { "/DELAYLOAD:gdiplus.dll /DELAYLOAD:msimg32.dll /DELAYLOAD:shlwapi.dll" }
linkoptions { "/DELAYLOAD:urlmon.dll /DELAYLOAD:version.dll /DELAYLOAD:wininet.dll" }
linkoptions { "/DELAYLOAD:uiautomationcore.dll" }
dependson { "PdfFilter", "PdfPreview" }
prebuildcommands { "cd %{cfg.targetdir} & ..\\..\\bin\\MakeLZSA.exe InstallerData.dat libmupdf.dll:libmupdf.dll PdfFilter.dll:PdfFilter.dll PdfPreview.dll:PdfPreview.dll" }