-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpremake5.lua
177 lines (148 loc) · 4.13 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
-- wxPdfDocument configuration file for premake5
--
-- Copyright (C) 2017-2025 Ulrich Telle <[email protected]>
--
-- This file is covered by the same licence as the entire wxpdfdoc package.
dofile "premake/wxwidgets.lua"
-- premake.wxSetupProps = '../Build/wx_setup.props'
BUILDDIR = _OPTIONS["builddir"] or "build"
workspace "wxpdfdoc"
configurations { "Debug", "Release", "Debug wxDLL", "Release wxDLL", "Debug DLL", "Release DLL" }
platforms { "Win32", "Win64" }
location(BUILDDIR)
if (is_msvc) then
local wks = workspace()
wks.filename = "wxpdfdoc_" .. vc_with_ver
end
defines {
"_WINDOWS",
"_CRT_SECURE_NO_WARNINGS",
"_CRT_SECURE_NO_DEPRECATE",
"_CRT_NONSTDC_NO_DEPRECATE"
}
init_filters()
-- wxPdfDoc library
project "wxpdfdoc"
location(BUILDDIR)
language "C++"
cppdialect "C++11"
if (is_msvc) then
local prj = project()
prj.filename = "wxpdfdoc_" .. vc_with_ver .. "_pdfdoc"
end
if wxMonolithic then
local prj = project()
prj.filename = "wxpdfdoc_mono"
end
make_filters( "PDFDOC", "wxpdfdoc", "core,xml" )
files { "src/*.cpp", "src/*.inc", "src/*.rc", "include/wx/*.h",
"src/crypto/*.cpp", "src/crypto/*.h",
"src/woff/*.cpp", "src/woff/*.h"
}
vpaths {
["Header Files"] = { "**.h", "**.inc" },
["Source Files"] = { "**.cpp", "**.rc" }
}
includedirs { "include",
"thirdparty/woff2/include",
"thirdparty/zint/backend/fonts",
"thirdparty/zint/backend"
}
characterset "Unicode"
links { "libwoff2", "libzint" }
-- Third party libraries
dofile "premake5_woff2.lua"
dofile "premake5_zint.lua"
-- Minimal sample
project "minimal"
location(BUILDDIR)
language "C++"
cppdialect "C++11"
kind "ConsoleApp"
if (is_msvc) then
local prj = project()
prj.filename = "wxpdfdoc_" .. vc_with_ver .. "_minimal"
end
if wxMonolithic then
local prj = project()
prj.filename = "minimal_mono"
end
use_filters( "PDFDOC", "samples/minimal", "core,xml" )
files { "samples/minimal/*.cpp", "samples/minimal/*.h", "samples/minimal/*.rc" }
vpaths {
["Header Files"] = { "**.h" },
["Source Files"] = { "**.cpp", "**.rc" }
}
includedirs { "samples/minimal", "include" }
characterset "Unicode"
links { "wxpdfdoc" }
-- wxPdfDC sample
project "dcsample"
location(BUILDDIR)
language "C++"
cppdialect "C++11"
kind "WindowedApp"
if (is_msvc) then
local prj = project()
prj.filename = "wxpdfdoc_" .. vc_with_ver .. "_dcsample"
end
if wxMonolithic then
local prj = project()
prj.filename = "dcsample_mono"
end
use_filters( "PDFDOC", "samples/pdfdc", "adv,html,richtext,core,xml" )
files { "samples/pdfdc/*.cpp", "samples/pdfdc/*.h", "samples/pdfdc/*.rc" }
vpaths {
["Header Files"] = { "**.h" },
["Source Files"] = { "**.cpp", "**.rc" }
}
includedirs { "samples/pdfdc", "include" }
characterset "Unicode"
entrypoint "WinMainCRTStartup"
links { "wxpdfdoc" }
-- MakeFont utility
project "makefont"
location(BUILDDIR)
language "C++"
cppdialect "C++11"
kind "ConsoleApp"
if (is_msvc) then
local prj = project()
prj.filename = "wxpdfdoc_" .. vc_with_ver .. "_makefont"
end
if wxMonolithic then
local prj = project()
prj.filename = "makefont_mono"
end
use_filters( "PDFDOC", "makefont", "core,xml" )
files { "makefont/*.cpp", "makefont/*.rc" }
vpaths {
["Header Files"] = { "**.h" },
["Source Files"] = { "**.cpp", "**.rc" }
}
includedirs { "include" }
characterset "Unicode"
links { "wxpdfdoc" }
-- ShowFont utility
project "showfont"
location(BUILDDIR)
language "C++"
cppdialect "C++11"
kind "ConsoleApp"
if (is_msvc) then
local prj = project()
prj.filename = "wxpdfdoc_" .. vc_with_ver .. "_showfont"
end
if wxMonolithic then
local prj = project()
prj.filename = "showfont_mono"
end
use_filters( "PDFDOC", "showfont", "core,xml" )
files { "showfont/*.cpp", "showfont/*.rc" }
vpaths {
["Header Files"] = { "**.h" },
["Source Files"] = { "**.cpp", "**.rc" }
}
includedirs { "include" }
characterset "Unicode"
links { "wxpdfdoc" }