diff options
| author | ruki <[email protected]> | 2019-09-01 12:52:36 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-09-01 12:52:36 +0800 |
| commit | d0e1cbfa1f98267c3be7964b2061bb0ee9b16c4c (patch) | |
| tree | 723ce8f805a2015d72b48a5a5ef1f9a7e2028012 /xmake/rules/asm/xmake.lua | |
| parent | 571d0614ff5b16c9e9648f8c3a529e9f3bd82c26 (diff) | |
add build.pcheader rules
Diffstat (limited to 'xmake/rules/asm/xmake.lua')
| -rw-r--r-- | xmake/rules/asm/xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/rules/asm/xmake.lua b/xmake/rules/asm/xmake.lua index a60246957..8b89231ee 100644 --- a/xmake/rules/asm/xmake.lua +++ b/xmake/rules/asm/xmake.lua @@ -21,8 +21,8 @@ -- define rule: asm.build rule("asm.build") set_extensions(".s", ".asm") - on_build_files(function (target, sourcefiles, opt) - import("private.action.build.object")(target, sourcefiles, opt) + on_build_files(function (target, sourcebatch, opt) + import("private.action.build.object")(target, sourcebatch, opt) end) -- define rule: asm |
