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
|
--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015-present, Xmake Open Source Community.
--
-- @author ruki
-- @file xmake.lua
--
-- define rule: qt/wasm application
rule("qt._wasm_app")
add_deps("qt.env")
after_build("build_qt_wasm_app")
-- define rule: qt static library
rule("qt.static")
add_deps("qt.qrc", "qt.ui", "qt.moc", "qt.ts")
-- we must set kind before target.on_load(), may we will use target in on_load()
on_load(function (target)
target:set("kind", "static")
end)
on_config(function (target)
import("load")(target, {frameworks = {"QtCore"}})
end)
-- define rule: qt shared library
rule("qt.shared")
add_deps("qt.qrc", "qt.ui", "qt.moc", "qt.ts")
-- we must set kind before target.on_load(), may we will use target in on_load()
on_load(function (target)
target:set("kind", "shared")
end)
on_config(function (target)
import("load")(target, {frameworks = {"QtCore"}})
end)
after_install("windows", "install.windows")
after_install("mingw", "install.mingw")
-- define rule: qt console
rule("qt.console")
add_deps("qt.qrc", "qt.ui", "qt.moc", "qt.ts")
-- we must set kind before target.on_load(), may we will use target in on_load()
on_load(function (target)
target:set("kind", "binary")
end)
on_config(function (target)
import("load")(target, {frameworks = {"QtCore"}})
end)
after_install("windows", "install.windows")
after_install("mingw", "install.mingw")
-- define rule: qt widgetapp
rule("qt.widgetapp")
add_deps("qt.ui", "qt.moc", "qt._wasm_app", "qt.qrc", "qt.ts")
-- we must set kind before target.on_load(), may we will use target in on_load()
on_load(function (target)
target:set("kind", target:is_plat("android") and "shared" or "binary")
end)
on_config(function (target)
-- get qt sdk version
local qt = target:data("qt")
local qt_sdkver = nil
if qt.sdkver then
import("core.base.semver")
qt_sdkver = semver.new(qt.sdkver)
end
local frameworks = {"QtGui", "QtWidgets", "QtCore"}
if qt_sdkver and qt_sdkver:lt("5.0") then
frameworks = {"QtGui", "QtCore"} -- qt4.x has not QtWidgets, it is in QtGui
end
import("load")(target, {gui = true, frameworks = frameworks})
end)
-- deploy application
after_build("android", "deploy.android")
after_build("macosx", "deploy.macosx")
-- install application for android
on_install("android", "install.android")
after_install("windows", "install.windows")
after_install("mingw", "install.mingw")
-- install application for xpack
on_installcmd("installcmd")
on_uninstallcmd("uninstallcmd")
-- define rule: qt static widgetapp
rule("qt.widgetapp_static")
add_deps("qt.ui", "qt.moc", "qt._wasm_app", "qt.qrc", "qt.ts")
-- we must set kind before target.on_load(), may we will use target in on_load()
on_load(function (target)
target:set("kind", target:is_plat("android") and "shared" or "binary")
end)
on_config(function (target)
local frameworks, plugins, qt_sdkver = import("config_static")(target)
if qt_sdkver:ge("5.0") then
table.join2(frameworks, {"QtGui", "QtWidgets", "QtCore"})
else
table.join2(frameworks, {"QtGui", "QtCore"})-- qt4.x has not QtWidgets, it is in QtGui
end
import("load")(target, {gui = true, plugins = plugins, frameworks = frameworks})
end)
-- deploy application
after_build("android", "deploy.android")
after_build("macosx", "deploy.macosx")
-- install application for android
on_install("android", "install.android")
after_install("windows", "install.windows")
after_install("mingw", "install.mingw")
-- install application for xpack
on_installcmd("installcmd")
on_uninstallcmd("uninstallcmd")
-- define rule: qt quickapp
rule("qt.quickapp")
add_deps("qt.qrc", "qt.moc", "qt._wasm_app", "qt.ts")
-- we must set kind before target.on_load(), may we will use target in on_load()
on_load(function (target)
target:set("kind", target:is_plat("android") and "shared" or "binary")
end)
on_config(function (target)
import("load")(target, {gui = true, frameworks = {"QtGui", "QtQuick", "QtQml", "QtCore", "QtNetwork"}})
end)
-- deploy application
after_build("android", "deploy.android")
after_build("macosx", "deploy.macosx")
-- install application for android
on_install("android", "install.android")
after_install("windows", "install.windows")
after_install("mingw", "install.mingw")
-- install application for xpack
on_installcmd("installcmd")
on_uninstallcmd("uninstallcmd")
-- define rule: qt static quickapp
rule("qt.quickapp_static")
add_deps("qt.qrc", "qt.moc", "qt._wasm_app", "qt.ts")
-- we must set kind before target.on_load(), may we will use target in on_load()
on_load(function (target)
target:set("kind", target:is_plat("android") and "shared" or "binary")
end)
on_config(function (target)
local frameworks, plugins = import("config_static")(target)
table.join2(frameworks, {"QtGui", "QtQuick", "QtQml", "QtQmlModels", "QtCore", "QtNetwork"})
import("load")(target, {gui = true, plugins = plugins, frameworks = frameworks})
end)
-- deploy application
after_build("android", "deploy.android")
after_build("macosx", "deploy.macosx")
-- install application for android
on_install("android", "install.android")
after_install("windows", "install.windows")
after_install("mingw", "install.mingw")
-- install application for xpack
on_installcmd("installcmd")
on_uninstallcmd("uninstallcmd")
-- define rule: qt qmlplugin
rule("qt.qmlplugin")
add_deps("qt.shared", "qt.qmltyperegistrar", "qt.ts")
on_config(function(target)
import("load")(target, {frameworks = { "QtCore", "QtGui", "QtQuick", "QtQml", "QtNetwork" }})
end)
-- define rule: qt application (deprecated)
rule("qt.application")
add_deps("qt.quickapp", "qt.ui")
|