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
|
--!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 installcmd.lua
--
-- imports
import("rules.qt.install.windeployqt", {rootdir = os.programdir()})
-- install application for xpack
function main(target, batchcmds, opt)
local package = opt.package
-- only for xpack (package exists)
if not package then
return
end
-- get install directory
local installdir = package:installdir()
if not installdir then
return
end
-- macOS: install .app bundle
if target:is_plat("macosx") then
local target_app = path.join(target:targetdir(), target:basename() .. ".app")
if os.isdir(target_app) then
-- copy .app to install directory
local appname = path.filename(target_app)
local dstappdir = path.join(installdir, appname)
batchcmds:cp(target_app, dstappdir, {symlink = true})
end
elseif target:is_plat("windows", "mingw") then
-- Windows/Mingw: need to run windeployqt to deploy Qt dependencies
-- First, prepare files in a temporary directory, then copy to package bindir via batchcmds
-- prepare deployment in a temporary directory
local deploydir = path.join(target:autogendir(), "qt", "deploy", target:name())
os.mkdir(deploydir)
-- copy target binary to deploydir first
local targetfile = path.join(deploydir, target:filename())
os.cp(target:targetfile(), targetfile)
-- copy qt.shared deps
local installfiles = {targetfile}
for _, dep in ipairs(target:orderdeps()) do
if dep:rule("qt.shared") then
local depfile = path.join(deploydir, path.filename(dep:targetfile()))
os.cp(dep:targetfile(), depfile)
table.insert(installfiles, depfile)
end
end
-- run windeployqt to deploy Qt dependencies to deploydir
windeployqt.run_deploy(target, deploydir, installfiles)
-- copy all deployed files and directories from deploydir to root install directory via batchcmds
local installdir = package:installdir()
batchcmds:cp(path.join(deploydir, "*"), installdir, {rootdir = deploydir})
else
-- Linux: copy all files from bindir (plugins, translations, etc. should be handled separately)
local bindir = target:bindir()
if bindir and os.isdir(bindir) then
local package_bindir = package:installdir("bin")
-- copy all files and directories from bindir
batchcmds:cp(path.join(bindir, "*"), package_bindir, {rootdir = bindir})
end
end
end
|