Zig Version
0.11.0
Steps to Reproduce and Observed Behavior
You have to write
shell.addCSourceFile(.{
.file = std.build.LazyPath.relative("tools/shell/shell.c"),
.flags = &.{}
});
Expected Behavior
shell.addCSourceFile("tools/shell/shell.c", &.{}) should still work. Compare it to behaviour of addCSourceFiles.