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
|
--!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: *.inf
rule("wdk.inf")
-- add rule: wdk environment
add_deps("wdk.env")
-- set extensions
set_extensions(".inf", ".inx")
-- before load
on_load(function (target)
-- imports
import("core.project.config")
-- get arch
local arch = assert(config.arch(), "arch not found!")
-- get wdk
local wdk = target:data("wdk")
-- get stampinf
local stampinf = path.join(wdk.bindir, wdk.sdkver, arch, is_host("windows") and "stampinf.exe" or "stampinf")
-- save uic
target:data_set("wdk.stampinf", stampinf)
end)
-- on build file
on_build_file(function (target, sourcefile, opt)
-- imports
import("core.base.option")
import("core.theme.theme")
import("core.project.depend")
import("utils.progress")
-- the target file
local targetfile = path.join(target:targetdir(), path.basename(sourcefile) .. ".inf")
-- save this target file for signing (wdk.sign.*, wdk.package.* rules)
target:data_set("wdk.sign.inf", targetfile)
-- init args
local args = {"-d", "*", "-a", is_arch("x64") and "amd64" or "x86", "-v", "*"}
local flags = target:values("wdk.inf.flags", sourcefile)
if flags then
table.join2(args, flags)
end
local wdk = target:data("wdk")
if wdk then
if wdk.kmdfver and (target:rule("wdk.env.wdm") or target:rule("wdk.env.kmdf")) then
table.insert(args, "-k")
table.insert(args, wdk.kmdfver)
elseif wdk.umdfver then
table.insert(args, "-u")
table.insert(args, wdk.umdfver .. ".0")
end
end
table.insert(args, "-f")
table.insert(args, targetfile)
-- need build this object?
local dependfile = target:dependfile(targetfile)
local dependinfo = target:is_rebuilt() and {} or (depend.load(dependfile) or {})
if not depend.is_changed(dependinfo, {lastmtime = os.mtime(targetfile), values = args}) then
return
end
-- trace progress info
progress.show(opt.progress, "${color.build.object}compiling.wdk.inf %s", sourcefile)
-- get stampinf
local stampinf = target:data("wdk.stampinf")
assert(stampinf and os.isexec(stampinf), "stampinf not found!")
-- update the timestamp
os.cp(sourcefile, targetfile)
os.vrunv(stampinf, args)
-- update files and values to the dependent file
dependinfo.files = {sourcefile}
dependinfo.values = args
depend.save(dependinfo, dependfile)
end)
|