summaryrefslogtreecommitdiff
path: root/xmake/rules/vala/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2025-04-07 22:36:14 +0800
committerruki <[email protected]>2025-04-08 15:31:58 +0800
commitc091d7b4d8f13ed4b17d23df8867ec30e8003c4c (patch)
tree90e7222f3b0fd527c21ded0f7d4f70298c40ea9f /xmake/rules/vala/xmake.lua
parent72870df34c9a3278fe4a92fa5591f6738f80ada6 (diff)
remove across_targets_in_parallel policy
Diffstat (limited to 'xmake/rules/vala/xmake.lua')
-rw-r--r--xmake/rules/vala/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/vala/xmake.lua b/xmake/rules/vala/xmake.lua
index caebab9d8..e2262a9ec 100644
--- a/xmake/rules/vala/xmake.lua
+++ b/xmake/rules/vala/xmake.lua
@@ -26,7 +26,7 @@ rule("vala.build")
set_sourcekinds("cc")
on_load(function (target)
-- we disable to build across targets in parallel, because the source files may depend on other target modules
- target:set("policy", "build.across_targets_in_parallel", false)
+ target:set("policy", "build.fence", true)
-- get vapi file
local vapifile = target:data("vala.vapifile")