diff options
| author | ruki <[email protected]> | 2024-04-12 00:41:28 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-04-12 00:41:28 +0800 |
| commit | b6985095f39c3ba5675fb602a6c0718b5ac2add6 (patch) | |
| tree | 024bb86882e382b5639aeb95f90118db389d2548 | |
| parent | acbfe1f92df15fe3e068ec23c2b4cdca3f216b4d (diff) | |
fix error
| -rw-r--r-- | xmake/rules/c++/modules/modules_support/msvc/builder.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/c++/modules/modules_support/msvc/builder.lua b/xmake/rules/c++/modules/modules_support/msvc/builder.lua index 114103ea2..ccdbea141 100644 --- a/xmake/rules/c++/modules/modules_support/msvc/builder.lua +++ b/xmake/rules/c++/modules/modules_support/msvc/builder.lua @@ -379,7 +379,7 @@ function make_module_buildcmds(target, batchcmds, opt) else if (not public and not external) or (external and private_dep) then batchcmds:show_progress(opt.progress, "${color.build.target}<%s> ${clear}${color.build.object}compiling.module.$(mode) %s", target:name(), name or opt.cppfile) - _compile_one_step(target, bmifile, opt.cppfile, opt.objectfile, provide {batchcmds = batchcmds}) + _compile_one_step(target, bmifile, opt.cppfile, opt.objectfile, provide, {batchcmds = batchcmds}) else batchcmds:show_progress(opt.progress, "${color.build.target}<%s> ${clear}${color.build.object}compiling.bmi.$(mode) %s", target:name(), name or opt.cppfile) _compile_bmi_step(target, bmifile, opt.cppfile, provide, {batchcmds = batchcmds}) |
