diff options
| -rw-r--r-- | tests/apis/rules_inject_deps/xmake.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/apis/rules_inject_deps/xmake.lua b/tests/apis/rules_inject_deps/xmake.lua index 383789e0a..18a8fdeaa 100644 --- a/tests/apis/rules_inject_deps/xmake.lua +++ b/tests/apis/rules_inject_deps/xmake.lua @@ -5,9 +5,9 @@ rule("cppfront") rule:add("deps", "cppfront", {order = true}) target:rule_set("c++.build.modules.builder", rule) end) - before_build_files(function (target, batchjobs, sourcebatch, opt) + before_build_files(function (target, sourcebatch, opt) print("build cppfront files") - end, {batch = true}) + end) target("test") set_kind("binary") |
