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
|
--!A cross-platform build utility based on Lua
--
-- Licensed to the Apache Software Foundation (ASF) under one
-- or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information
-- regarding copyright ownership. The ASF licenses this file
-- to you 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 - 2018, TBOOX Open Source Group.
--
-- @author ruki
-- @file xmake.lua
--
-- define rule: *.ui
rule("qt.ui")
-- add rule: qt environment
add_deps("qt.env")
-- set extensions
set_extensions(".ui")
-- before load
before_load(function (target)
-- get uic
local uic = path.join(target:data("qt").bindir, is_host("windows") and "uic.exe" or "uic")
assert(uic and os.isexec(uic), "uic not found!")
-- save uic
target:data_set("qt.uic", uic)
end)
-- before build file
before_build_file(function (target, sourcefile_ui, opt)
-- imports
import("core.base.option")
import("core.project.config")
import("core.project.depend")
-- get uic
local uic = target:data("qt.uic")
-- get c++ header file for ui
local headerfile_ui = path.join(config.buildir(), ".qt", "ui", target:name(), "ui_" .. path.basename(sourcefile_ui) .. ".h")
local headerfile_dir = path.directory(headerfile_ui)
-- add includedirs
target:add("includedirs", path.absolute(headerfile_dir, os.projectdir()))
-- add clean files
target:data_add("qt.cleanfiles", headerfile_ui)
-- need build this object?
local dependfile = target:dependfile(headerfile_ui)
local dependinfo = option.get("rebuild") and {} or (depend.load(dependfile) or {})
if not depend.is_changed(dependinfo, {lastmtime = os.mtime(headerfile_ui)}) then
return
end
-- trace progress info
if option.get("verbose") then
cprint("${green}[%02d%%]:${dim} compiling.qt.ui %s", opt.progress, sourcefile_ui)
else
cprint("${green}[%02d%%]:${clear} compiling.qt.ui %s", opt.progress, sourcefile_ui)
end
-- ensure ui header file directory
if not os.isdir(headerfile_dir) then
os.mkdir(headerfile_dir)
end
-- compile ui
os.vrunv(uic, {sourcefile_ui, "-o", headerfile_ui})
-- update files and values to the dependent file
dependinfo.files = {sourcefile_ui}
depend.save(dependinfo, dependfile)
end)
|