summaryrefslogtreecommitdiff
path: root/xmake/rules/objc++/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-05-15 21:17:20 +0800
committerruki <[email protected]>2022-05-15 21:17:20 +0800
commita7c090202ecfd4b458a611d2576a3537b287ea40 (patch)
treed8d57dd9e9ca5df30b62286255e1d42bc0c5dcaa /xmake/rules/objc++/xmake.lua
parentddbdfb0766c9e8e5ea5d57091f0e3a8a29f6078e (diff)
enable objc for distcc
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 0107690e7..8a560f780 100644
--- a/xmake/rules/objc++/xmake.lua
+++ b/xmake/rules/objc++/xmake.lua
@@ -31,7 +31,7 @@ rule("objc.build")
target:add("frameworks", "Foundation", "CoreFoundation")
end
end)
- on_build_files("private.action.build.object", {batch = true})
+ on_build_files("private.action.build.object", {batch = true, distcc = true})
-- define rule: objc++.build
rule("objc++.build")
@@ -46,7 +46,7 @@ rule("objc++.build")
target:add("frameworks", "Foundation", "CoreFoundation")
end
end)
- on_build_files("private.action.build.object", {batch = true})
+ on_build_files("private.action.build.object", {batch = true, distcc = true})
-- define rule: objc
rule("objc++")