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
|
rule("qt.ts")
add_deps("qt.env")
set_extensions(".ts")
on_config(function (target)
-- get source file
local lupdate_argv = {"-no-obsolete"}
local sourcefile_ts
for _, sourcebatch in pairs(target:sourcebatches()) do
if sourcebatch.rulename == "qt.ts" then
sourcefile_ts = sourcebatch.sourcefiles
else
if sourcebatch.sourcefiles then
for _, sourcefile in ipairs(sourcebatch.sourcefiles) do
table.join2(lupdate_argv, path(sourcefile))
end
end
end
end
if sourcefile_ts then
-- get lupdate and lrelease
local qt = assert(target:data("qt"), "qt not found!")
local lupdate = path.join(qt.bindir, is_host("windows") and "lupdate.exe" or "lupdate")
local lrelease = path.join(qt.bindir, is_host("windows") and "lrelease.exe" or "lrelease")
if not os.isexec(lupdate) and qt.libexecdir then
lupdate = path.join(qt.libexecdir, is_host("windows") and "lupdate.exe" or "lupdate")
end
if not os.isexec(lrelease) and qt.libexecdir then
lrelease = path.join(qt.libexecdir, is_host("windows") and "lrelease.exe" or "lrelease")
end
if not os.isexec(lupdate) and qt.libexecdir_host then
lupdate = path.join(qt.libexecdir_host, is_host("windows") and "lupdate.exe" or "lupdate")
end
if not os.isexec(lrelease) and qt.libexecdir_host then
lrelease = path.join(qt.libexecdir_host, is_host("windows") and "lrelease.exe" or "lrelease")
end
assert(os.isexec(lupdate), "lupdate not found!")
assert(os.isexec(lrelease), "lrelease not found!")
for _, tsfile in ipairs(sourcefile_ts) do
local tsargv = {}
table.join2(tsargv, lupdate_argv)
table.join2(tsargv, {"-ts", path(tsfile)})
os.vrunv(lupdate, tsargv)
end
-- save lrelease
target:data_set("qt.ts.lrelease", lrelease)
end
end)
before_buildcmd_file(function (target, batchcmds, sourcefile_ts, opt)
-- get lrelease
local lrelease = target:data("qt.ts.lrelease")
local outputdir = target:targetdir()
local fileconfig = target:fileconfig(sourcefile_ts)
if fileconfig and fileconfig.prefixdir then
if path.is_absolute(fileconfig.prefixdir) then
outputdir = fileconfig.prefixdir
else
outputdir = path.join(target:targetdir(), fileconfig.prefixdir)
end
end
local outfile = path.join(outputdir, path.basename(sourcefile_ts) .. ".qm")
batchcmds:mkdir(outputdir)
batchcmds:show_progress(opt.progress, "${color.build.object}compiling.qt.ts %s", sourcefile_ts)
batchcmds:vrunv(lrelease, {path(sourcefile_ts), "-qm", path(outfile)})
batchcmds:add_depfiles(sourcefile_ts)
end)
|