summaryrefslogtreecommitdiff
path: root/libpanto/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'libpanto/build.zig')
-rw-r--r--libpanto/build.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpanto/build.zig b/libpanto/build.zig
index 973c75b..65f4093 100644
--- a/libpanto/build.zig
+++ b/libpanto/build.zig
@@ -9,7 +9,7 @@ pub fn build(b: *std.Build) void {
// libraries, so the module needs libc + the C translation unit + the
// include path for `@cImport`.
const panto_mod = b.addModule("panto", .{
- .root_source_file = b.path("src/root.zig"),
+ .root_source_file = b.path("src/public.zig"),
.target = target,
.optimize = optimize,
.link_libc = true,
@@ -18,7 +18,7 @@ pub fn build(b: *std.Build) void {
// Unit tests
const test_module = b.createModule(.{
- .root_source_file = b.path("src/root.zig"),
+ .root_source_file = b.path("src/public.zig"),
.target = target,
.optimize = optimize,
.link_libc = true,