-
Notifications
You must be signed in to change notification settings - Fork 158
/
xmake.lua
260 lines (241 loc) · 8.66 KB
/
xmake.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
add_rules("mode.debug", "mode.release")
option("sw")
set_default(false)
set_showmenu(true)
option_end()
option("winrt")
set_default(false)
set_showmenu(true)
option_end()
option("window")
set_default("glfw")
set_showmenu(true)
option_end()
option("driver")
set_default("opengl")
set_showmenu(true)
option_end()
if is_plat("windows") then
add_cxflags("/utf-8")
add_defines("NOMINMAX")
set_languages("c++20")
if is_mode("release") then
set_optimize("faster")
end
else
set_languages("c++17")
end
-- add_repositories("zeromake https://github.com/zeromake/xrepo.git v0.1.0")
add_repositories("zeromake https://github.com/zeromake/xrepo.git")
package("borealis")
set_sourcedir(path.join(os.projectdir(), "library/borealis"))
add_configs("window", {description = "use window lib", default = "glfw", type = "string"})
add_configs("driver", {description = "use driver lib", default = "opengl", type = "string"})
add_configs("winrt", {description = "use winrt api", default = false, type = "boolean"})
add_deps(
"nanovg",
"yoga =2.0.1",
"nlohmann_json",
"fmt",
"tweeny",
"stb",
"tinyxml2"
)
add_includedirs("include")
if is_plat("windows") then
add_includedirs("include/compat")
add_syslinks("wlanapi", "iphlpapi", "ws2_32")
end
on_load(function (package)
local window = package:config("window")
local driver = package:config("driver")
local winrt = package:config("winrt")
if window == "glfw" then
package:add("deps", "xfangfang_glfw")
elseif window == "sdl" then
package:add("deps", "sdl2")
end
if driver == "opengl" then
package:add("deps", "glad =0.1.36")
elseif driver == "d3d11" then
package:add("syslinks", "d3d11")
end
if winrt then
package:add("syslinks", "windowsapp")
end
end)
on_install(function (package)
local configs = {}
configs["window"] = package:config("window")
configs["driver"] = package:config("driver")
configs["winrt"] = package:config("winrt") and "y" or "n"
import("package.tools.xmake").install(package, configs)
os.cp("library/include/*", package:installdir("include").."/")
os.rm(package:installdir("include/borealis/extern"))
os.cp("library/include/borealis/extern/libretro-common", package:installdir("include").."/")
end)
package_end()
package("pdr")
set_sourcedir(path.join(os.projectdir(), "library/libpdr"))
add_deps("mongoose", "tinyxml2")
on_install(function (package)
io.writefile("xmake.lua", [[
add_rules("mode.debug", "mode.release")
if is_plat("windows") then
add_cxflags("/utf-8")
set_languages("c++20")
if is_mode("release") then
set_optimize("faster")
end
else
set_languages("c++17")
end
add_requires("tinyxml2", "mongoose")
target("pdr")
set_kind("$(kind)")
add_includedirs("include")
add_headerfiles("include/*.h")
add_files("src/*.cpp")
add_packages("tinyxml2", "mongoose")
]])
local configs = {}
import("package.tools.xmake").install(package, configs)
end)
package_end()
package("mpv")
if is_plat("windows", "mingw") then
set_urls("https://github.com/zeromake/wiliwili/releases/download/v0.6.0/mpv-dev-x86_64-v3-20230514-git-9e716d6.7z")
add_versions("20230514", "d56e3e10ea3f9362a0d9bb85ff3cd84f6e1fecfe66c87725040a82d5712b3f5f")
end
add_links("mpv")
on_install("windows", "mingw", function (package)
import("detect.sdks.find_vstudio")
os.cp("include/*", package:installdir("include").."/")
os.cp("*.a", package:installdir("lib").."/")
os.cp("*.dll", package:installdir("bin").."/")
if package:is_plat("windows") then
-- 从 dll 里导出函数为 lib 文件,预编译自带 def 文件格式不正确,没法导出 lib
if os.isfile("mpv.def") then
local def_context = io.readfile("mpv.def")
if not def_context:startswith("EXPORTS") then
io.writefile("mpv.def", format("EXPORTS\n%s", def_context))
end
end
for _, vsinfo in pairs(find_vstudio()) do
if vsinfo.vcvarsall then
os.setenv("PATH", vsinfo.vcvarsall[os.arch()]["PATH"])
end
end
os.execv("lib.exe", {"/name:libmpv-2.dll", "/def:mpv.def", "/out:mpv.lib", "/MACHINE:X64"})
os.cp("*.lib", package:installdir("lib").."/")
os.cp("*.exp", package:installdir("lib").."/")
end
end)
package_end()
if get_config("winrt") then
add_requires("sdl2", {configs={shared=true,winrt=true}})
add_requireconfs("**.sdl2", {configs={shared=true,winrt=true}})
add_requires("borealis", {configs={window="sdl",driver=get_config("driver"),winrt=true}})
add_requireconfs("**.curl", {configs={winrt=true}})
else
add_requires("borealis", {configs={window=get_config("window"),driver=get_config("driver")}})
end
add_requires("mpv", {configs={shared=true}})
add_requires("cpr")
add_requires("clip")
add_requires("lunasvg")
add_requires("opencc")
add_requires("pystring")
add_requires("qr-code-generator", {configs={cpp=true}})
add_requires("webp")
add_requires("mongoose")
add_requires("zlib")
add_requires("pdr")
target("wiliwili")
add_includedirs("wiliwili/include", "wiliwili/include/api")
add_files("wiliwili/source/**.cpp")
add_defines("BRLS_RESOURCES=\"./resources/\"")
on_config(function (target)
local cmakefile = io.readfile("CMakeLists.txt")
local VERSION_MAJOR = string.match(cmakefile, "set%(VERSION_MAJOR \"(%d)\"%)")
local VERSION_MINOR = string.match(cmakefile, "set%(VERSION_MINOR \"(%d)\"%)")
local VERSION_REVISION = string.match(cmakefile, "set%(VERSION_REVISION \"(%d)\"%)")
local PACKAGE_NAME = string.match(cmakefile, "set%(PACKAGE_NAME ([^%)]+)%)")
target:set("configvar", "VERSION_MAJOR", VERSION_MAJOR)
target:set("configvar", "VERSION_MINOR", VERSION_MINOR)
target:set("configvar", "VERSION_REVISION", VERSION_REVISION)
target:set("configvar", "VERSION_BUILD", "$(shell git rev-list --count --all)")
target:add(
"defines",
"BUILD_TAG_VERSION=$(shell git describe --tags)",
"DBUILD_TAG_SHORT=$(shell git rev-parse --short HEAD)",
"BUILD_VERSION_MAJOR="..VERSION_MAJOR,
"BUILD_VERSION_MINOR="..VERSION_MINOR,
"BUILD_VERSION_REVISION="..VERSION_REVISION,
"BUILD_PACKAGE_NAME="..PACKAGE_NAME
)
end)
local driver = get_config("driver")
if driver == "opengl" then
add_defines("BOREALIS_USE_OPENGL")
elseif driver == "d3d11" then
add_defines("BOREALIS_USE_D3D11")
elseif driver == "metal" then
add_defines("BOREALIS_USE_METAL")
end
add_defines("USE_WEBP")
if get_config("window") == 'sdl' then
add_defines("__SDL2__=1")
add_packages("sdl2")
else
add_defines("__GLFW__=1")
end
if get_config("winrt") then
add_defines("__WINRT__=1")
add_configfiles("winrt/AppxManifest.xml.in")
end
if get_config("sw") then
add_defines("MPV_SW_RENDER=1")
end
add_packages(
"borealis",
"mpv",
"cpr",
"clip",
"qr-code-generator",
"lunasvg",
"opencc",
"pystring",
"webp",
"mongoose",
"zlib",
"pdr"
)
if is_plat("windows", "mingw") then
after_build(function (target)
if get_config("winrt") then
import("uwp")(target)
else
for _, pkg in pairs(target:pkgs()) do
for _, f in ipairs(pkg:libraryfiles()) do
if f:endswith(".dll") or f:endswith(".so") then
os.cp(f, target:targetdir().."/")
end
end
end
os.cp("resources", target:targetdir().."/")
end
end)
end
if is_plat("mingw") then
add_ldflags("-static-libgcc", "-static-libstdc++")
end
if is_mode("release") then
if is_plat("mingw") then
add_cxflags("-Wl,--subsystem,windows", {force = true})
add_ldflags("-Wl,--subsystem,windows", {force = true})
elseif is_plat("windows") then
add_ldflags("/MANIFEST:EMBED", "/MANIFESTINPUT:wiliwili/source/resource.manifest", {force = true})
add_ldflags("/SUBSYSTEM:WINDOWS", "/ENTRY:mainCRTStartup", {force = true})
end
end