We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fdaed4 commit f6dae10Copy full SHA for f6dae10
ecsact/cli/commands/build/recipe/cook.cc
@@ -502,6 +502,10 @@ auto cl_compile(compile_options options) -> int {
502
cl_args.push_back("/O2");
503
cl_args.push_back("/GL");
504
cl_args.push_back("/MP");
505
+ cl_args.push_back("/Fo:"); // typos:disable-line
506
+ cl_args.push_back(
507
+ std::format("{}\\", fs::path{options.work_dir}.lexically_normal().string())
508
+ );
509
510
auto generated_defines =
511
ecsact::cli::cc_defines_gen(options.imports, options.exports);
typos.toml
@@ -1,2 +1,5 @@
1
[files]
2
extend-exclude = ["CHANGELOG.md"]
3
+
4
+[default]
5
+extend-ignore-re = ["(?Rm)^.*(#|//)\\s*typos:disable-line$"]
0 commit comments