summaryrefslogtreecommitdiff
path: root/xmake/rules/c++/precompiled_header/xmake.lua
diff options
context:
space:
mode:
authorArthur LAURENT <[email protected]>2025-05-05 17:13:25 +0200
committerArthur LAURENT <[email protected]>2025-05-09 15:56:33 +0200
commit5d6d36e0db45d90dfa7f0cdf2937d989de683833 (patch)
tree2d1fbb82ee8d38921af1863fd3ce968f7c5cea75 /xmake/rules/c++/precompiled_header/xmake.lua
parentd88bd9c5ace6c64981420569fb886f7c646135c0 (diff)
(C++ module support) improve jobgraph support
Diffstat (limited to 'xmake/rules/c++/precompiled_header/xmake.lua')
-rw-r--r--xmake/rules/c++/precompiled_header/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/c++/precompiled_header/xmake.lua b/xmake/rules/c++/precompiled_header/xmake.lua
index 30ab31106..ad600474d 100644
--- a/xmake/rules/c++/precompiled_header/xmake.lua
+++ b/xmake/rules/c++/precompiled_header/xmake.lua
@@ -27,7 +27,7 @@ rule("c.build.pcheader")
end, {jobgraph = true})
rule("c++.build.pcheader")
- add_orders("c++.build.pcheader", "c++.build.modules.builder")
+ add_orders("c++.build.modules.scanner", "c++.build.pcheader", "c++.build.modules.builder")
on_config(function (target, opt)
import("private.action.build.pcheader").config(target, "cxx", opt)
end)