Skip to content

Commit b698509

Browse files
committed
fix error
1 parent acbfe1f commit b698509

File tree

1 file changed

+1
-1
lines changed
  • xmake/rules/c++/modules/modules_support/msvc

1 file changed

+1
-1
lines changed

xmake/rules/c++/modules/modules_support/msvc/builder.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ function make_module_buildcmds(target, batchcmds, opt)
379379
else
380380
if (not public and not external) or (external and private_dep) then
381381
batchcmds:show_progress(opt.progress, "${color.build.target}<%s> ${clear}${color.build.object}compiling.module.$(mode) %s", target:name(), name or opt.cppfile)
382-
_compile_one_step(target, bmifile, opt.cppfile, opt.objectfile, provide {batchcmds = batchcmds})
382+
_compile_one_step(target, bmifile, opt.cppfile, opt.objectfile, provide, {batchcmds = batchcmds})
383383
else
384384
batchcmds:show_progress(opt.progress, "${color.build.target}<%s> ${clear}${color.build.object}compiling.bmi.$(mode) %s", target:name(), name or opt.cppfile)
385385
_compile_bmi_step(target, bmifile, opt.cppfile, provide, {batchcmds = batchcmds})

0 commit comments

Comments
 (0)