fixed bug where it was not supported for Windows

This commit is contained in:
2026-05-22 19:47:08 +02:00
parent ff13a82ac2
commit 07b13e2be7
2 changed files with 3 additions and 4 deletions
+1 -3
View File
@@ -11,11 +11,9 @@ pub fn build(b: *std.Build) void {
const exe = b.addExecutable(.{
.name = "file_organizer",
.root_module = b.createModule(.{
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
.imports = &.{
.{ .name = "file_organizer", .module = mod },
},
}),
});