summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig4
1 files changed, 2 insertions, 2 deletions
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 {
193 193
194 // Graphemes 194 // Graphemes
195 const graphemes = b.addModule("Graphemes", .{ 195 const graphemes = b.addModule("Graphemes", .{
196 .root_source_file = b.path("src/grapheme.zig"), 196 .root_source_file = b.path("src/Graphemes.zig"),
197 .target = target, 197 .target = target,
198 .optimize = optimize, 198 .optimize = optimize,
199 }); 199 });
@@ -455,7 +455,7 @@ pub fn build(b: *std.Build) void {
455 .target = target, 455 .target = target,
456 .optimize = optimize, 456 .optimize = optimize,
457 }); 457 });
458 unicode_tests.root_module.addImport("grapheme", graphemes); 458 unicode_tests.root_module.addImport("Graphemes", graphemes);
459 unicode_tests.root_module.addImport("Normalize", norm); 459 unicode_tests.root_module.addImport("Normalize", norm);
460 460
461 const run_unicode_tests = b.addRunArtifact(unicode_tests); 461 const run_unicode_tests = b.addRunArtifact(unicode_tests);