From 18df0173714f6a3995ec34c246244712d86e3794 Mon Sep 17 00:00:00 2001 From: Fabien Masson Date: Fri, 15 Aug 2025 14:13:17 +0200 Subject: [PATCH] solve module name --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 2f9a1c3..6eb1412 100644 --- a/build.zig +++ b/build.zig @@ -18,7 +18,7 @@ pub fn build(b: *std.Build) void { // This creates a "module", which represents a collection of source files alongside // some compilation options, such as optimization mode and linked system libraries. // Every executable or library we compile will be based on one or more modules. - const lib_mod = b.createModule(.{ + const lib_mod = b.addModule("markov", .{ // `root_source_file` is the Zig "entry point" of the module. If a module // only contains e.g. external object files, you can make this `null`. // In this case the main source file is merely a path, however, in more