From 7a212f5ec5aabf016d17d3ed28649e7982b810ef Mon Sep 17 00:00:00 2001 From: Sam Atman Date: Wed, 30 Apr 2025 12:02:17 -0400 Subject: grapheme now Graphemes, Data files gone --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 3aeccd1..2d88ab9 100644 --- a/build.zig +++ b/build.zig @@ -193,7 +193,7 @@ pub fn build(b: *std.Build) void { // Graphemes const graphemes = b.addModule("Graphemes", .{ - .root_source_file = b.path("src/grapheme.zig"), + .root_source_file = b.path("src/Graphemes.zig"), .target = target, .optimize = optimize, }); @@ -455,7 +455,7 @@ pub fn build(b: *std.Build) void { .target = target, .optimize = optimize, }); - unicode_tests.root_module.addImport("grapheme", graphemes); + unicode_tests.root_module.addImport("Graphemes", graphemes); unicode_tests.root_module.addImport("Normalize", norm); const run_unicode_tests = b.addRunArtifact(unicode_tests); -- cgit v1.2.3