summaryrefslogtreecommitdiff
path: root/xmake/rules/objc++/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-03-14 00:25:41 +0800
committerruki <[email protected]>2020-03-13 20:34:11 +0800
commit87272da2962c65216670860a2390638c4516841b (patch)
tree55029bdf7baa633c6e625968b94a92da707d19bf /xmake/rules/objc++/xmake.lua
parent6b9c77991a4f6f69fe1faa4e2e9905f71bc5ce94 (diff)
enable build_object batch
Diffstat (limited to 'xmake/rules/objc++/xmake.lua')
-rw-r--r--xmake/rules/objc++/xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/rules/objc++/xmake.lua b/xmake/rules/objc++/xmake.lua
index 5235aeff8..9f649a834 100644
--- a/xmake/rules/objc++/xmake.lua
+++ b/xmake/rules/objc++/xmake.lua
@@ -22,13 +22,13 @@
rule("objc.build")
set_sourcekinds("mm")
add_deps("c.build.pcheader")
- on_build_files("private.action.build.object")
+ on_build_files("private.action.build.object", {batch = true})
-- define rule: objc++.build
rule("objc++.build")
set_sourcekinds("mxx")
add_deps("c++.build.pcheader")
- on_build_files("private.action.build.object")
+ on_build_files("private.action.build.object", {batch = true})
-- define rule: objc
rule("objc++")