mod: rename file to be more agnostic to zig language styling

This commit is contained in:
2025-08-04 21:02:13 +02:00
parent 4714ec2bf9
commit b43361da73
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ pub fn build(b: *std.Build) void {
const zlog_module = b.addModule("zlog", .{
// In this case the main source file is merely a path, however, in more
// complicated build scripts, this could be a generated file.
.root_source_file = b.path("src/zlog.zig"),
.root_source_file = b.path("src/root.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
@@ -89,7 +89,7 @@ pub fn build(b: *std.Build) void {
// but does not run it.
const lib_unit_tests = b.addTest(.{
.root_module = b.createModule(.{
.root_source_file = b.path("src/zlog.zig"),
.root_source_file = b.path("src/root.zig"),
.target = target,
.optimize = optimize,
.imports = &.{