diff options
| author | ruki <[email protected]> | 2026-03-10 06:43:46 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-10 06:43:46 +0800 |
| commit | 5d8708f4bff9c8ee444817ba09776ac120d0278a (patch) | |
| tree | 7cfe4fb207e970cdace29e32a14d957debdfe1c3 /xmake/rules/c++/modules/scanner.lua | |
| parent | 19f9986dd6ef0f49799a2a60b11a0c9cc4cc40d0 (diff) | |
| parent | 7e4bedf8961ba1666cceaa6c2fa06ea0c68f6f71 (diff) | |
Merge pull request #7387 from xmake-io/progress
show target name in progress
Diffstat (limited to 'xmake/rules/c++/modules/scanner.lua')
| -rw-r--r-- | xmake/rules/c++/modules/scanner.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmake/rules/c++/modules/scanner.lua b/xmake/rules/c++/modules/scanner.lua index 8d5fd057d..2bcee1f12 100644 --- a/xmake/rules/c++/modules/scanner.lua +++ b/xmake/rules/c++/modules/scanner.lua @@ -27,6 +27,7 @@ import("core.base.profiler") import("core.base.bytes") import("async.jobgraph") import("async.runjobs") +import("utils.progress") import("support") import("mapper") import("stlheaders") @@ -538,6 +539,7 @@ function _schedule_module_dependencies_scan(target, jobgraph, sourcebatch) if not jobgraph:has(scanfilejob) then has_scanjob = true jobgraph:add(scanfilejob, function(_, _, opt) + progress.set_target(opt.progress, target) _do_scan(target, sourcefile, opt) end) end |
