Try 4, lol.

This commit is contained in:
Caleb Gardner
2025-07-09 06:42:02 -05:00
parent 60e183512b
commit 5c14b7db48
22 changed files with 331 additions and 1721 deletions
+2 -1
View File
@@ -23,10 +23,11 @@ pub fn build(b: *std.Build) !void {
});
const exe_mod = b.createModule(.{
.root_source_file = b.path("src/zig_unsquashfs.zig"),
.root_source_file = b.path("src/bin/unsquashfs.zig"),
.target = target,
.optimize = optimize,
});
exe_mod.addImport("squashfs", lib_mod);
exe_mod.addOptions("config", opt);
const exe = b.addExecutable(.{
.linkage = .static,