diff options
| author | Nic Gaffney <gaffney_nic@protonmail.com> | 2025-10-23 17:21:19 -0500 |
|---|---|---|
| committer | Nic Gaffney <gaffney_nic@protonmail.com> | 2025-10-23 17:21:19 -0500 |
| commit | ca4b29762ac0ed19e1f18474e0df3257f4a74a06 (patch) | |
| tree | 70b5b22790016f8a82c6226f94c31debba165e4f /build.zig | |
| parent | c034b4a1291a803028eef8b0950a7090ea54b047 (diff) | |
| download | funcz-ca4b29762ac0ed19e1f18474e0df3257f4a74a06.tar.gz | |
Added README
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ pub fn build(b: *std.Build) !void { const lib = b.addLibrary(.{ .name = "funcz", .root_module = b.createModule(.{ - .root_source_file = b.path("src/lib.zig"), + .root_source_file = b.path("src/root.zig"), .target = target, .optimize = optimize, }), @@ -17,7 +17,7 @@ pub fn build(b: *std.Build) !void { const exe = b.addExecutable(.{ .name = "funczExample", .root_module = b.createModule(.{ - .root_source_file = b.path("src/main.zig"), + .root_source_file = b.path("src/example.zig"), .imports = &.{ .{.name = "funcz", .module = lib.root_module} }, .target = target, .optimize = optimize, |
