summaryrefslogtreecommitdiff
path: root/xmake/rules/c++/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-03-10 23:44:11 +0800
committerruki <[email protected]>2020-03-10 16:25:10 +0800
commitfd44c0fef3ed3bab58d27bb28da5884f9dc7945d (patch)
tree471d1779104bb57afbe16b98f19e0e21996d8d0c /xmake/rules/c++/xmake.lua
parent8db0c0d333e24556e1a40931eae9166cbd233e35 (diff)
fix index
Diffstat (limited to 'xmake/rules/c++/xmake.lua')
-rw-r--r--xmake/rules/c++/xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/rules/c++/xmake.lua b/xmake/rules/c++/xmake.lua
index 9211db820..1693b38ac 100644
--- a/xmake/rules/c++/xmake.lua
+++ b/xmake/rules/c++/xmake.lua
@@ -28,7 +28,7 @@ rule("c.build.pcheader")
rule("c.build")
set_sourcekinds("cc")
add_deps("c.build.pcheader")
- on_build_files("private.action.build.object")
+ on_build_files("private.action.build.object", {batch = true})
-- define rule: c++.build.pcheader
rule("c++.build.pcheader")
@@ -40,7 +40,7 @@ rule("c++.build.pcheader")
rule("c++.build")
set_sourcekinds("cxx")
add_deps("c++.build.pcheader", "c++.build.modules")
- on_build_files("private.action.build.object")
+ on_build_files("private.action.build.object", {batch = true})
-- define rule: cpp
rule("c++")